diff options
Diffstat (limited to 'lib/styles')
-rw-r--r-- | lib/styles/all.css | 16 | ||||
-rw-r--r-- | lib/styles/screen.css | 18 |
2 files changed, 32 insertions, 2 deletions
diff --git a/lib/styles/all.css b/lib/styles/all.css index 915ced5d6..5d7eb7d14 100644 --- a/lib/styles/all.css +++ b/lib/styles/all.css @@ -11,6 +11,22 @@ div.clearer { overflow: hidden; } +/* one of the many clearfix versions */ +.group { + display: inline-block; +} +.group { + display: block; +} +.group:before, +.group:after { + content: ""; + display: table; +} +.group:after { + clear: both; +} + div.no { display: inline; margin: 0; diff --git a/lib/styles/screen.css b/lib/styles/screen.css index 80a161f19..101ed3529 100644 --- a/lib/styles/screen.css +++ b/lib/styles/screen.css @@ -52,16 +52,31 @@ div.notify { overflow: hidden; } +#link__wiz .ui-dialog-content { + padding-left: 0; + padding-right: 0; +} + /* media manager popup toggle buttons */ #media__popup_content button.button { - border-style: outset; + border: 1px outset; } #media__popup_content button.selected { border-style: inset; } +/* hide something accessibly + (e.g. for screen readers or to keep access keys working) */ +.a11y { + position: absolute !important; + left: -10000px !important; + top: auto !important; + width: 1px !important; + height: 1px !important; + overflow: hidden !important; +} /* syntax highlighting code */ .code .br0 { color: #66cc66; } @@ -86,4 +101,3 @@ div.notify { .code .re4 { color: #009999; } .code .st0 { color: #ff0000; } .code .sy0 { color: #66cc66; } - |