diff options
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/debug.css | 3 | ||||
-rw-r--r-- | core/css/quickedit.css | 24 |
2 files changed, 13 insertions, 14 deletions
diff --git a/core/css/debug.css b/core/css/debug.css index 82d365aa..c957fd77 100644 --- a/core/css/debug.css +++ b/core/css/debug.css @@ -24,6 +24,5 @@ text-align: left; padding: 4px; font-size: 110%; - -moz-border-radius: 5% 5% 5% 5%; + -moz-border-radius: 5%; } - diff --git a/core/css/quickedit.css b/core/css/quickedit.css index 1ab00de5..62cd0cb6 100644 --- a/core/css/quickedit.css +++ b/core/css/quickedit.css @@ -1,25 +1,25 @@ -div.gQuickEdit { - margin: 0px !important; - padding: 0px !important; +.gQuickEdit { + margin: 0 !important; + padding: 0 !important; border: none !important; } #gQuickEditPane { - background: white; + background: #fff; opacity: 0.8; - border-bottom: 1px dashed black; + border-bottom: 1px dashed #000; } #gQuickEditPane div { - background: red; + background-color: red; float: right; display: inline; cursor: pointer; margin: 8px; } -#gQuickEditPane div.rotate-clockwise { - background: url(../images/arrow_rotate_clockwise.png); +#gQuickEditPane .rotate-clockwise { + background: url('../images/arrow_rotate_clockwise.png'); width: 16px; height: 16px; position: absolute; @@ -27,12 +27,12 @@ div.gQuickEdit { right: 0px; } -#gQuickEditPane div.rotate-clockwise span { +#gQuickEditPane .rotate-clockwise span { display: none; } -#gQuickEditPane div.rotate-counter-clockwise { - background: url(../images/arrow_rotate_anticlockwise.png); +#gQuickEditPane .rotate-counter-clockwise { + background: url('../images/arrow_rotate_anticlockwise.png'); width: 16px; height: 16px; position: absolute; @@ -40,6 +40,6 @@ div.gQuickEdit { left: 0px; } -#gQuickEditPane div.rotate-counter-clockwise span { +#gQuickEditPane .rotate-counter-clockwise span { display: none; } |