mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
saw how checkbox images were called in css variables, so updated pageImgURL variable.
This commit is contained in:
parent
bd0357b637
commit
18bbefee1c
@ -50,7 +50,7 @@ $critical: #ed2e18;
|
||||
// -------------------------
|
||||
$body-bg: rgb(20,20,20);
|
||||
$page-bg: $dark-2;
|
||||
$page-img-bg: url('../img/angle_gradient_rev.png');
|
||||
$pageImageUrl: '../img/angle_gradient_rev.png';
|
||||
$body-color: $gray-4;
|
||||
$text-color: $gray-4;
|
||||
|
||||
|
@ -56,7 +56,7 @@ $critical: #EC2128;
|
||||
|
||||
$body-bg: $white;
|
||||
$page-bg: $white;
|
||||
$page-img-bg: url('../img/angle_gradient_light_rev.png');
|
||||
$pageImageUrl: '../img/angle_gradient_light_rev.png';
|
||||
$body-color: $gray-1;
|
||||
$text-color: $gray-1;
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
|
||||
.page-container {
|
||||
background-color: $page-bg;
|
||||
background-image: $page-img-bg; /* this is an experiment */
|
||||
background-image: url($pageImageUrl); /* this is an experiment */
|
||||
background-position: left;
|
||||
background-size: 60%;
|
||||
background-repeat: no-repeat;
|
||||
|
@ -1,5 +1,5 @@
|
||||
.login-container {
|
||||
background-image: $page-img-bg; /* this is an experiment */
|
||||
background-image: url($pageImageUrl); /* this is an experiment */
|
||||
background-position: left;
|
||||
background-size: 60%;
|
||||
background-repeat: no-repeat;
|
||||
|
Loading…
Reference in New Issue
Block a user