diff options
| author | 2014-09-30 19:45:49 +0200 | |
|---|---|---|
| committer | 2014-09-30 19:45:49 +0200 | |
| commit | 0d5a1f3a659b6f407b47859c794a662075e3f48e (patch) | |
| tree | 1259ccf51a2145cf85e4a31dc9b5b748c2a891a9 /p/themes/Screwdriver/screwdriver.css | |
| parent | dc714d3949373b79344438335cfc0edde77de036 (diff) | |
Improve design of .box
See https://github.com/marienfressinaud/FreshRSS/issues/646
Diffstat (limited to 'p/themes/Screwdriver/screwdriver.css')
| -rw-r--r-- | p/themes/Screwdriver/screwdriver.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/p/themes/Screwdriver/screwdriver.css b/p/themes/Screwdriver/screwdriver.css index 37fa18e10..6206504d1 100644 --- a/p/themes/Screwdriver/screwdriver.css +++ b/p/themes/Screwdriver/screwdriver.css @@ -497,6 +497,40 @@ a.btn { font-size: 0; } +/*=== Boxes */ +.box { + background: #EDE7DE; + border-radius: 4px 4px 0 0; +} +.box .box-title { + margin: 0; + padding: 5px 10px; + background: linear-gradient(0deg, #EDE7DE 0%, #fff 100%) #171717; + background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #fff 100%); + box-shadow: 0px -1px #fff inset,0 -2px #ccc inset; + color: #888; + text-shadow: 0 1px #ccc; + border-radius: 4px 4px 0 0; + font-size: 1.1rem; + font-weight: normal; +} +.box .box-content { + max-height: 260px; +} + +.box .box-content .item { + padding: 0 10px; + font-size: 0.9rem; + line-height: 2.5em; +} + +.box .box-content .item .configure { + visibility: hidden; +} +.box .box-content .item:hover .configure { + visibility: visible; +} + /*=== STRUCTURE */ /*===============*/ /*=== Header */ |
