3
0
Fork 0

Merge pull request #29 from Skylsmoi/336/fix_display_taskbar_save

css rules for taskbar are now more strict
small_fixes
Kelson 9 years ago committed by GitHub
commit e30da0c0cd

@ -20,7 +20,7 @@
} }
.kiwix .kiwix_centered { .kiwix .kiwix_centered {
max-width: 55.8em; max-width: 720px;
margin: 0 auto; margin: 0 auto;
} }
.kiwix .kiwix_button_wrapper { .kiwix .kiwix_button_wrapper {
@ -30,26 +30,31 @@
float: right; float: right;
} }
.kiwix #kiwixtoolbar button, .kiwix #kiwixtoolbar button,
.kiwix #kiwixtoolbar #kiwixsearchform input[type="submit"] { .kiwix #kiwixtoolbar input[type="submit"] {
margin-right: 5px; box-sizing: border-box !important;
padding: 0 6px; height: 26px !important;
border: 1px solid #999; line-height: 20px !important;
border-radius: 3px; margin-right: 5px !important;
background-color: #ededed; padding: 2px 6px !important;
font-weight: normal; border: 1px solid #999 !important;
cursor: pointer; border-radius: 3px !important;
background-color: #ededed !important;
font-weight: normal !important;
cursor: pointer !important;
font-size: 16px !important;
} }
.kiwix #kiwixtoolbar a { .kiwix #kiwixtoolbar a {
margin-bottom: 5px; margin-bottom: 5px;
} }
.kiwix #kiwixtoolbar a > button { .kiwix #kiwixtoolbar #kiwixsearchform input[type='text'] {
font-size: 16px; box-sizing: border-box !important;
} height: 26px !important;
.kiwix #kiwixtoolbar #kiwixsearchform input { line-height: 20px !important;
border: 1px solid #999; border: 1px solid #999 !important;
border-radius: 3px; border-radius: 3px !important;
background-color: #fff; background-color: #fff !important;
padding: 2px 2px 2px 3px; padding: 2px 2px 2px 3px !important;
font-size: 16px !important;
} }
/* Try to fix buggy stuff in jquery-ui autocomplete */ /* Try to fix buggy stuff in jquery-ui autocomplete */
@ -62,17 +67,6 @@ li.ui-state-focus {
font-weight: bold; font-weight: bold;
} }
/* Specific CSS for Bookeen Cybook device (800x600 B&W ereader) */
.cybook #kiwixtoolbar button, .cybook #kiwixtoolbar input {
font-size: 1.5em;
}
.cybook #kiwixsearchbox {
width: 7em;
}
.cybook a {
text-decoration: underline;
}
/* the breakpoint "645px" is the width of the 3 btns "library", "home" and "randoml" */ /* the breakpoint "645px" is the width of the 3 btns "library", "home" and "randoml" */
@media (max-width: 645px) { @media (max-width: 645px) {
.kiwixsearch { .kiwixsearch {
@ -80,10 +74,10 @@ li.ui-state-focus {
margin-top: 5px; margin-top: 5px;
} }
#kiwixsearchbox { #kiwixsearchbox {
width: 65%; width: 65%;
} }
#kiwixsearchform input[type="submit"] { #kiwixsearchform input[type="submit"] {
width: 30%; width: 28%;
} }
.height_separator { .height_separator {
height: 6em; height: 6em;

Loading…
Cancel
Save