mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
MINOR Setting base font size for CMS
This commit is contained in:
parent
926aa8f30e
commit
f6edcd1170
@ -31,16 +31,25 @@
|
||||
.jstree > ul > li { margin-left: 0px; }
|
||||
|
||||
/* line 5, ../scss/screen.scss */
|
||||
.logo .version { display: none; }
|
||||
body { font-size: 13px; font-family: Verdana, Arial, sans-serif; }
|
||||
|
||||
/* line 11, ../scss/screen.scss */
|
||||
body * { font-size: 13px; }
|
||||
|
||||
/* line 15, ../scss/screen.scss */
|
||||
body .ui-widget { font-size: 1em; }
|
||||
|
||||
/* line 20, ../scss/screen.scss */
|
||||
.logo .version { display: none; }
|
||||
|
||||
/* line 26, ../scss/screen.scss */
|
||||
.ss-loading-screen, .ss-loading-screen .loading-logo { width: 100%; height: 100%; overflow: hidden; position: absolute; background: #fff; background: -moz-radial-gradient(50% 50% 180deg, circle cover, white, #efefef, #c7c7c7 100%); background: -webkit-gradient(radial, 50% 50%, 350, 50% 50%, 0, from(#e3e3e3), to(white)); z-index: 100000; margin: 0; padding: 0; }
|
||||
|
||||
/* line 25, ../scss/screen.scss */
|
||||
/* line 40, ../scss/screen.scss */
|
||||
.ss-loading-screen .loading-logo { background-url: url(../images/logo.gif); background-repeat: no-repeat; background-color: transparent; background-position: 50% 50%; }
|
||||
/* line 31, ../scss/screen.scss */
|
||||
/* line 46, ../scss/screen.scss */
|
||||
.ss-loading-screen p { width: 100%; text-align: center; position: absolute; bottom: 80px; }
|
||||
/* line 37, ../scss/screen.scss */
|
||||
/* line 52, ../scss/screen.scss */
|
||||
.ss-loading-screen p span.notice { display: inline-block; font-size: 14px; padding: 10px 20px; color: #dc7f00; border: none; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; -moz-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1); -o-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1); box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1); }
|
||||
/* line 55, ../scss/screen.scss */
|
||||
/* line 70, ../scss/screen.scss */
|
||||
.ss-loading-screen .loading-animation { display: none; position: absolute; left: 49%; top: 75%; }
|
||||
|
@ -1,6 +1,21 @@
|
||||
//@import "compass/reset";
|
||||
@import "tree.scss";
|
||||
@import "forms.scss";
|
||||
|
||||
body {
|
||||
// @include global-reset;
|
||||
font-size: 13px;
|
||||
font-family: Verdana, Arial, sans-serif;
|
||||
}
|
||||
|
||||
body * {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
body .ui-widget {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.logo {
|
||||
.version {
|
||||
display: none;
|
||||
|
Loading…
x
Reference in New Issue
Block a user