diff options
author | Simon <simon@kisikew.org> | 2012-04-21 22:23:13 -0700 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-04-21 22:23:13 -0700 |
commit | 54817f058a4f62301525950d8cdf0189b4d964dc (patch) | |
tree | 733e5c36847580c99d626fc8c6b94528d05a65c9 /view | |
parent | d340b80094cbaf33f3989422240be929741b0ff8 (diff) | |
parent | 203aa819e2309e3e776aa1eaedb26b08d8336288 (diff) | |
download | volse-hubzilla-54817f058a4f62301525950d8cdf0189b4d964dc.tar.gz volse-hubzilla-54817f058a4f62301525950d8cdf0189b4d964dc.tar.bz2 volse-hubzilla-54817f058a4f62301525950d8cdf0189b4d964dc.zip |
Merge pull request #256 from simonlnu/master
fix tinymce theming
Diffstat (limited to 'view')
-rw-r--r-- | view/theme/dispy-dark/style.css | 26 | ||||
-rw-r--r-- | view/theme/dispy/style.css | 26 |
2 files changed, 30 insertions, 22 deletions
diff --git a/view/theme/dispy-dark/style.css b/view/theme/dispy-dark/style.css index 1c7bf8f40..05d544b0a 100644 --- a/view/theme/dispy-dark/style.css +++ b/view/theme/dispy-dark/style.css @@ -910,22 +910,20 @@ width: 100%; padding: 2px 20px 5px 0; } #profile-jot-text_parent { - /*border-radius: 10px;*/ box-shadow: 5px 0 10px 0 #111; } #profile-jot-text_tbl { margin-bottom: 10px; - /*border-radius: 10px;*/ - background: #888; + background: #777; } #profile-jot-text_ifr { width:99.900002% !important; } #profile-jot-text_toolbargroup { - background: #888; + background: #777; } .mceCenter table tr { - background: #888; + background: #777; } [id$="jot-text_ifr"] { width: 99.900002% !important; @@ -936,14 +934,20 @@ width: 100%; color: #2e2f2e; background: #eec; } -.mceFirst tr { - background: #888; +.defaultSkin tr.mceFirst { + background: #777; } -.mceFirst td { - /*border-radius: 10px 10px 0px 0px;*/ +.defaultSkin td.mceFirst { + background-color: #eec; } -.mceLast td { - /*border-radius: 0 0 10px 10px;*/ +.defaultSkin td.mceLast { + background-color: #eec; +} +.defaultSkin span.mceIcon, .defaultSkin img.mceIcon { + background-color: #eec; +} +.defaultSkin .mceButtonDisabled .mceIcon { + background-color: #eec; } #profile-attach-wrapper, #profile-audio-wrapper, diff --git a/view/theme/dispy/style.css b/view/theme/dispy/style.css index 8823bc81a..cf3b83cfa 100644 --- a/view/theme/dispy/style.css +++ b/view/theme/dispy/style.css @@ -911,22 +911,20 @@ width: 100%; padding: 2px 20px 5px 0; } #profile-jot-text_parent { - /*border-radius: 10px;*/ box-shadow: 5px 0 10px 0 #111; } #profile-jot-text_tbl { margin-bottom: 10px; - /*border-radius: 10px;*/ - background: #888; + background: #777; } #profile-jot-text_ifr { width:99.900002% !important; } #profile-jot-text_toolbargroup { - background: #888; + background: #777; } .mceCenter table tr { - background: #888; + background: #777; } [id$="jot-text_ifr"] { width: 99.900002% !important; @@ -937,14 +935,20 @@ width: 100%; color: #2e2f2e; background: #eec; } -.mceFirst tr { - background: #888; +.defaultSkin tr.mceFirst { + background: #777; } -.mceFirst td { - /*border-radius: 10px 10px 0px 0px;*/ +.defaultSkin td.mceFirst { + background-color: #eec; } -.mceLast td { - /*border-radius: 0 0 10px 10px;*/ +.defaultSkin td.mceLast { + background-color: #eec; +} +.defaultSkin span.mceIcon, .defaultSkin img.mceIcon { + background-color: #eec; +} +.defaultSkin .mceButtonDisabled .mceIcon { + background-color: #eec; } #profile-attach-wrapper, #profile-audio-wrapper, |