reduce font size of appname in header

This commit is contained in:
Jan-Christoph Borchardt 2014-05-28 11:33:52 +02:00
parent 190fc8adf5
commit 934048b32c
2 changed files with 9 additions and 6 deletions

View File

@ -7,21 +7,20 @@
display: inline-block;
position: relative;
color: #fff;
font-size: 26px;
opacity: .4;
font-size: 15px;
margin-left: 5px;
}
/* show caret indicator next to logo to make clear it is tappable */
#header .icon-caret {
display: inline-block;
width: 12px;
height: 14px;
height: 8px;
}
.header-appname,
#header .icon-caret {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=45)";
filter: alpha(opacity=45);
opacity: .45;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
filter: alpha(opacity=75);
opacity: .75;
}
/* do not show menu toggle on public share links as there is no menu */
#body-public #header .icon-caret {

View File

@ -8,6 +8,10 @@
.header-appname {
display: none;
}
/* slightly different caret position when appname isnt shown */
#header .icon-caret {
height: 15px;
}
#body-login .wrapper {
display: -webkit-box;