mirror of https://github.com/apache/cloudstack.git
Fix compatibility
-Don't use background size; make separately-sized images -Have fallback flat color for layered and gradient backgrounds
This commit is contained in:
parent
6e2c58b280
commit
deefb7e4f1
|
|
@ -36,13 +36,13 @@ body {
|
|||
|
||||
.total {
|
||||
padding: 5px 10px;
|
||||
@include linear-gradient(lightgray, lighten(black, 15%));
|
||||
@include linear-gradient(#a4a4a4, lighten(#272727, 15%));
|
||||
border-radius: 1px;
|
||||
margin-top: -5px;
|
||||
margin-right: 20px;
|
||||
float: left;
|
||||
border-radius: 8px;
|
||||
text-shadow: 0px 1px 1px black;
|
||||
text-shadow: 0px 2px 2px black;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@
|
|||
@include csui-button;
|
||||
@include linear-gradient(darkgray, lighten(black, 15%));
|
||||
|
||||
background-color: #2e2e2e;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
text-shadow: 0px 1px 1px black;
|
||||
|
|
|
|||
|
|
@ -20,6 +20,9 @@
|
|||
|
||||
@mixin csui-dropdown-dark {
|
||||
@include csui-dropdown;
|
||||
|
||||
background-color: #333333;
|
||||
|
||||
@include background(
|
||||
url(csui/img/form/dropdown-arrow-white.png) no-repeat right 8px center,
|
||||
linear-gradient(#4e4e4e, #242424)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
@mixin csui-header {
|
||||
background-color: #0a5f91;
|
||||
|
||||
@include background(
|
||||
url(csui/img/overlay-pattern.png) repeat,
|
||||
url(csui/img/header/gradient.png) no-repeat
|
||||
|
|
@ -7,7 +9,7 @@
|
|||
background-size: auto, cover;
|
||||
|
||||
.logo {
|
||||
background: url(csui/img/logo-main.png) no-repeat left;
|
||||
background: url(csui/img/header/logo.png) no-repeat left;
|
||||
width: 1280px;
|
||||
height: 80px;
|
||||
margin: auto;
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
height: 100%;
|
||||
min-height: 630px;
|
||||
|
||||
background-color: #385770;
|
||||
|
||||
@include background(
|
||||
url(csui/img/login/brand-logo.png),
|
||||
url(csui/img/login/bottom-bar.png),
|
||||
|
|
@ -16,6 +18,7 @@
|
|||
form {
|
||||
@include row;
|
||||
|
||||
background-color: #000812;
|
||||
background: rgba(#000812, 0.8);
|
||||
padding-top: 60px;
|
||||
padding-bottom: 60px;
|
||||
|
|
@ -24,17 +27,15 @@
|
|||
|
||||
.logo {
|
||||
@include shift(2);
|
||||
@include span-columns(3);
|
||||
@include span-columns(4);
|
||||
|
||||
background: url(csui/img/logo-main.png) no-repeat top center;
|
||||
background-size: contain;
|
||||
background: url(csui/img/login/logo.png) no-repeat top center;
|
||||
float: left;
|
||||
height: 300px;
|
||||
}
|
||||
|
||||
.fields {
|
||||
@include span-columns(3);
|
||||
@include shift(1);
|
||||
|
||||
color: white;
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 5.7 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 28 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 22 KiB |
Loading…
Reference in New Issue