Commit 640c9a49 by Torkel Ödegaard

ux(): merge fixes

parent 5d51b439
...@@ -61,7 +61,7 @@ $grid-breakpoints: ( ...@@ -61,7 +61,7 @@ $grid-breakpoints: (
// //
// Define the maximum width of `.container` for different screen sizes. // Define the maximum width of `.container` for different screen sizes.
$container-max-widths: (tork $container-max-widths: (
sm: 576px, sm: 576px,
md: 720px, md: 720px,
lg: 940px, lg: 940px,
......
...@@ -104,31 +104,34 @@ $gf-form-label-margin: 0.2rem; ...@@ -104,31 +104,34 @@ $gf-form-label-margin: 0.2rem;
&.gf-size-auto { width: auto; } &.gf-size-auto { width: auto; }
} }
select.gf-form-input { // select.gf-form-input {
text-overflow: ''; // -webkit-appearance: none;
-webkit-appearance: none; // -moz-appearance: menulist-text; // was set to "window" and caused odd display on windos and linux.
-moz-appearance: menulist-text; // was set to "window" and caused odd display on windos and linux. // appearance: none;
appearance: none; //
//
&:after { // &:-moz-focusring {
position: absolute; // color: transparent;
top: 50%; // }
right: 10px; // }
height: 12px; //
margin-top: -6px; // .gf-form-select-wrapper {
padding: 0; // position: relative;
background-color: transparent; // &:after {
color: $input-color; // position: absolute;
font: normal normal normal 14px/1 FontAwesome; // top: 50%;
text-align: center; // right: 10px;
content: '\f0d7'; // height: 12px;
pointer-events: none; // margin-top: -6px;
} // padding: 0;
// background-color: transparent;
&:-moz-focusring { // color: $input-color;
color: transparent; // font: normal normal normal 14px/1 FontAwesome;
} // text-align: center;
} // content: '\f0d7';
// pointer-events: none;
// }
// }
.gf-form-btn { .gf-form-btn {
padding: $input-padding-y $input-padding-x; padding: $input-padding-y $input-padding-x;
......
...@@ -20,13 +20,8 @@ ...@@ -20,13 +20,8 @@
.page-container { .page-container {
background-color: $page-bg; background-color: $page-bg;
background-position: left;
background-size: 60%;
background-repeat: no-repeat;
position: relative;
padding: ($spacer * 2) ($spacer * 4); padding: ($spacer * 2) ($spacer * 4);
max-width: 1060px; max-width: 1060px;
margin-left: 0;
min-height: calc(100% - 54px); min-height: calc(100% - 54px);
padding-bottom: $spacer * 5; padding-bottom: $spacer * 5;
background-image: linear-gradient(60deg, rgba(0, 0, 0, 0) 0%, lighten($page-bg, 4%) 98%); background-image: linear-gradient(60deg, rgba(0, 0, 0, 0) 0%, lighten($page-bg, 4%) 98%);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment