diff options
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/apps.css | 29 | ||||
-rw-r--r-- | core/css/fixes.css | 4 | ||||
-rw-r--r-- | core/css/header.css | 3 | ||||
-rw-r--r-- | core/css/styles.css | 11 |
4 files changed, 21 insertions, 26 deletions
diff --git a/core/css/apps.css b/core/css/apps.css index e525270a765..32582a8026a 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -57,7 +57,7 @@ #app-navigation li:hover > a, #app-navigation .selected, #app-navigation .selected a { - background-color: #ccc; + background-color: #ddd; } #app-navigation .with-icon a, @@ -140,7 +140,7 @@ } #app-navigation > ul .collapsible.open:hover { - box-shadow: inset 0 0 3px #ccc; + box-shadow: inset 0 0 3px #ddd; } #app-navigation > ul .collapsible.open ul { @@ -224,7 +224,6 @@ position: absolute; top: 0; right: 0; - bottom: 0; z-index: 105; } @@ -370,7 +369,8 @@ #app-navigation .app-navigation-entry-edit input { border-bottom-right-radius: 0; border-top-right-radius: 0; - width: 204px; + width: 204px; /* fallback for IE8 */ + width: calc(100% - 36px); padding: 5px; margin-right: 0; height: 38px; @@ -463,27 +463,6 @@ background-color: transparent; } -/* icons */ -.folder-icon, .delete-icon, .edit-icon, .progress-icon { - background-repeat: no-repeat; - background-position: center; -} -.folder-icon { background-image: url('../img/places/folder.svg'); } -.delete-icon { background-image: url('../img/actions/delete.svg'); } -.delete-icon:hover, .delete-icon:focus { - background-image: url('../img/actions/delete-hover.svg'); -} -.edit-icon { background-image: url('../img/actions/rename.svg'); } -.progress-icon { - background-image: url('../img/loading.gif'); - background-size: 16px; - /* force show the loading icon, not only on hover */ - -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; - filter:alpha(opacity=100); - opacity: 1 !important; - display: inline !important; -} - /* buttons */ button.loading { background-image: url('../img/loading.gif'); diff --git a/core/css/fixes.css b/core/css/fixes.css index 12daf251579..5aba741b64b 100644 --- a/core/css/fixes.css +++ b/core/css/fixes.css @@ -105,3 +105,7 @@ select { overflow-y: auto; } +.ie8 #app-navigation .app-navigation-entry-edit input { + line-height: 38px; +} + diff --git a/core/css/header.css b/core/css/header.css index 0223f5f18b9..f83ef451ce6 100644 --- a/core/css/header.css +++ b/core/css/header.css @@ -42,7 +42,8 @@ } #header .logo { - background: url(../img/logo.svg) no-repeat center; + background-image: url(../img/logo.svg); + background-repeat: no-repeat; width: 252px; height: 120px; margin: 0 auto; diff --git a/core/css/styles.css b/core/css/styles.css index ad320b1eeca..7058a2bf7c2 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -679,6 +679,7 @@ label.infield { #body-login .wrapper { min-height: 100%; margin: 0 auto -70px; + width: 300px; } #body-login footer, #body-login .push { height: 70px; @@ -812,6 +813,16 @@ span.ui-icon {float: left; margin: 3px 7px 30px 0;} height: 16px; } +/* ---- TOOLTIPS ---- */ +.extra-data { + padding-right: 5px !important; +} +.tipsy-inner { + max-width: 400px !important; + overflow: hidden; + text-overflow: ellipsis; +} + /* ---- TAGS ---- */ #tagsdialog .content { width: 100%; height: 280px; |