Skip to content
Snippets Groups Projects
Commit 31d324c1 authored by Florent Torregrosa's avatar Florent Torregrosa Committed by Florent Torregrosa
Browse files

Issue #3265451 by Grimreaper: Fix Stylelint

parent dd2ba8a1
No related branches found
No related tags found
No related merge requests found
......@@ -6,8 +6,8 @@
}
[dir="rtl"] .ui-selectmenu-button span.ui-icon {
left: 7px;
right: auto;
left: 7px;
}
/**
......@@ -19,9 +19,9 @@
}
.selecticons + .ajax-progress {
position: absolute;
z-index: 11;
top: 4px;
left: 55px;
z-index: 11;
font-weight: 400;
}
.selecticons + .ajax-progress .throbber {
......@@ -33,93 +33,93 @@
.ui-widget.ui-selectmenu-button,
.ui-selectmenu-menu .ui-menu-item {
font-weight: 400;
font-size: 12px;
font-weight: 400;
}
.ui-widget.ui-selectmenu-button {
box-sizing: border-box;
display: inline-block;
position: relative; /* 1 */
line-height: normal; /* 2 */
cursor: pointer;
-webkit-appearance: none; /* 3 */
-moz-appearance: none; /* 3 */
display: inline-block;
box-sizing: border-box;
width: auto !important;
min-width: 200px;
padding: 4px 18px; /* 4 */
cursor: pointer;
-webkit-transition: all 0.1s;
transition: all 0.1s;
text-decoration: none;
color: #333;
border: 1px solid #a6a6a6;
border-radius: 20em;
background-color: #f2f1eb;
background-image: -webkit-linear-gradient(top, #f6f6f3, #e7e7df);
background-image: linear-gradient(to bottom, #f6f6f3, #e7e7df);
color: #333;
text-decoration: none;
background-image: linear-gradient(to bottom, #f6f6f3, #e7e7df);
text-shadow: 0 1px hsla(0, 0%, 100%, 0.6);
-webkit-transition: all 0.1s;
transition: all 0.1s;
line-height: normal; /* 2 */
-webkit-appearance: none; /* 3 */
-moz-appearance: none; /* 3 */
-webkit-font-smoothing: antialiased; /* 6 */
width: auto !important;
min-width: 200px;
}
.ui-widget.ui-selectmenu-button:hover,
.ui-widget.ui-selectmenu-button:focus {
background-color: #f9f8f6;
background-image: -webkit-linear-gradient(top, #fcfcfa, #e9e9dd);
background-image: linear-gradient(to bottom, #fcfcfa, #e9e9dd);
color: #1a1a1a;
text-decoration: none;
color: #1a1a1a;
outline: none;
background-color: #f9f8f6;
background-image: -webkit-linear-gradient(top, #fcfcfa, #e9e9dd);
background-image: linear-gradient(to bottom, #fcfcfa, #e9e9dd);
}
.ui-widget.ui-selectmenu-button:hover {
box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.125);
}
.ui-widget.ui-selectmenu-button .ui-current-item-icon {
margin: -1px 0 0 0;
float: none;
margin: -1px 0 0 0;
vertical-align: middle;
}
.ui-selectmenu-menu .ui-menu-item {
overflow: hidden;
white-space: nowrap;
position: relative;
overflow: hidden;
padding-left: 25px;
white-space: nowrap;
}
.ui-selectmenu-menu .ui-menu-item span {
position: absolute;
left: 5px;
top: 6px;
left: 5px;
}
[dir="rtl"] .ui-selectmenu-menu .ui-menu-item {
padding-right: 25px;
padding-left: 5px;
}
[dir="rtl"] .ui-selectmenu-menu .ui-menu-item span {
left: auto;
right: 5px;
left: auto;
}
/* Prevent focus ring being covered by next siblings. */
.ui-widget.ui-selectmenu-button:focus {
z-index: 10;
border: 1px solid #3AB2FF;
border: 1px solid #3ab2ff;
box-shadow: 0 0 0.5em 0.1em hsla(203, 100%, 60%, 0.7);
}
.ui-widget.ui-selectmenu-button:active {
-webkit-transition: none;
transition: none;
border: 1px solid #a6a6a6;
background-color: #dfdfd9;
background-image: -webkit-linear-gradient(top, #f6f6f3, #e7e7df);
background-image: linear-gradient(to bottom, #f6f6f3, #e7e7df);
background-image: linear-gradient(to bottom, #f6f6f3, #e7e7df);
box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.2);
-webkit-transition: none;
transition: none;
}
/* Reset default selectmenu inner div properties */
.ui-selectmenu-button span.ui-selectmenu-text {
padding: 3px 10px 3px 5px;
line-height: inherit;
display: inline-block;
text-overflow: inherit;
overflow: visible;
padding: 3px 10px 3px 5px;
text-overflow: inherit;
line-height: inherit;
}
[dir="rtl"] .ui-selectmenu-button span.ui-selectmenu-text {
padding: 3px 5px 3px 10px;
......@@ -129,24 +129,24 @@
.ui-selectmenu-open .ui-menu.ui-widget-content {
/* Prevent creating too long dropdowns. */
max-height: 10em;
background: #fff;
border: 1px solid #ccc;
margin: 0;
padding: 0;
border: 1px solid #ccc;
background: #fff;
}
/* Adjust border radius to make the dropdown look like part of the button itself */
.ui-selectmenu-button.ui-corner-top {
border-radius: 1em 1em 0 0;
transition: border-radius 0s;
border-radius: 1em 1em 0 0;
}
/* List item selector to indicate which element is under the cursor */
.ui-selectmenu-menu .ui-menu-item.ui-state-focus {
/* Remove weird margin that makes list items "jump" when hovered */
margin: 0;
background: #0072b9;
color: #fff;
background: #0072b9;
}
/* Fix element position when is presented inside dragable table */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment