mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 02:23:31 -06:00
ux(): merge fixes
This commit is contained in:
parent
5d51b439d2
commit
640c9a49d8
@ -61,7 +61,7 @@ $grid-breakpoints: (
|
||||
//
|
||||
// Define the maximum width of `.container` for different screen sizes.
|
||||
|
||||
$container-max-widths: (tork
|
||||
$container-max-widths: (
|
||||
sm: 576px,
|
||||
md: 720px,
|
||||
lg: 940px,
|
||||
|
@ -104,31 +104,34 @@ $gf-form-label-margin: 0.2rem;
|
||||
&.gf-size-auto { width: auto; }
|
||||
}
|
||||
|
||||
select.gf-form-input {
|
||||
text-overflow: '';
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: menulist-text; // was set to "window" and caused odd display on windos and linux.
|
||||
appearance: none;
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 10px;
|
||||
height: 12px;
|
||||
margin-top: -6px;
|
||||
padding: 0;
|
||||
background-color: transparent;
|
||||
color: $input-color;
|
||||
font: normal normal normal 14px/1 FontAwesome;
|
||||
text-align: center;
|
||||
content: '\f0d7';
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
&:-moz-focusring {
|
||||
color: transparent;
|
||||
}
|
||||
}
|
||||
// select.gf-form-input {
|
||||
// -webkit-appearance: none;
|
||||
// -moz-appearance: menulist-text; // was set to "window" and caused odd display on windos and linux.
|
||||
// appearance: none;
|
||||
//
|
||||
//
|
||||
// &:-moz-focusring {
|
||||
// color: transparent;
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// .gf-form-select-wrapper {
|
||||
// position: relative;
|
||||
// &:after {
|
||||
// position: absolute;
|
||||
// top: 50%;
|
||||
// right: 10px;
|
||||
// height: 12px;
|
||||
// margin-top: -6px;
|
||||
// padding: 0;
|
||||
// background-color: transparent;
|
||||
// color: $input-color;
|
||||
// font: normal normal normal 14px/1 FontAwesome;
|
||||
// text-align: center;
|
||||
// content: '\f0d7';
|
||||
// pointer-events: none;
|
||||
// }
|
||||
// }
|
||||
|
||||
.gf-form-btn {
|
||||
padding: $input-padding-y $input-padding-x;
|
||||
|
@ -20,13 +20,8 @@
|
||||
|
||||
.page-container {
|
||||
background-color: $page-bg;
|
||||
background-position: left;
|
||||
background-size: 60%;
|
||||
background-repeat: no-repeat;
|
||||
position: relative;
|
||||
padding: ($spacer * 2) ($spacer * 4);
|
||||
max-width: 1060px;
|
||||
margin-left: 0;
|
||||
min-height: calc(100% - 54px);
|
||||
padding-bottom: $spacer * 5;
|
||||
background-image: linear-gradient(60deg, rgba(0, 0, 0, 0) 0%, lighten($page-bg, 4%) 98%);
|
||||
|
Loading…
Reference in New Issue
Block a user