Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: static/scss/components/_select.scss

Issue 29559620: Issue 5692 - Create Browser Selector with Browser Detection Component for help.eyeo.com (Closed) Base URL: https://hg.adblockplus.org/help.eyeo.com
Patch Set: Re-add browser-select include, add scripts block Created Nov. 2, 2017, 2:29 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « static/scss/components/_browser-select.scss ('k') | static/scss/main.scss » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: static/scss/components/_select.scss
===================================================================
--- a/static/scss/components/_select.scss
+++ b/static/scss/components/_select.scss
@@ -40,23 +40,23 @@
}
.custom-select-options
{
position: absolute;
bottom: 100%;
left: 0px;
margin-bottom: 0.5em;
- padding: 0.7em;
border: 1px solid $gray-medium;
border-radius: 4px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
color: $black;
background: $white;
list-style: none;
+ z-index: 2;
a
{
color: $black;
}
}
.custom-select-options[aria-hidden="true"]
@@ -97,8 +97,69 @@
content: none;
}
a
{
color: inherit;
}
}
+
+.custom-select-option
juliandoucette 2017/11/02 15:22:19 suggest: change background-color on hove/active/fo
ire 2017/11/03 08:45:36 I'll probably handle this in the other issue handl
+{
+ padding: 0.7em;
+}
+
+// Custom Dropdown (extends the custom select element)
juliandoucette 2017/11/02 15:22:18 suggest: category comment (underline it)
ire 2017/11/03 08:45:36 Will change all comments in a separate issue
+
+.custom-select-dropdown .custom-select-selected,
+.custom-select-dropdown .custom-select-options
+{
+ width: 100%;
+}
+
+.custom-select-dropdown .custom-select-selected
+{
+ position: relative;
+ height: 2.5em;
+ padding-right: 3.5em;
+ padding-left: 0.7em;
+ color: $primary;
+ text-align: left;
+}
+
+[dir="rtl"] .custom-select-dropdown .custom-select-selected
+{
+ padding-right: 0.7em;
+ padding-left: 3.5em;
+ text-align: right;
+}
+
+.custom-select-dropdown .custom-select-selected:after
+{
+ position: absolute;
+ top: 0;
+ right: 0;
+ width: 3em;
+ height: 100%;
+ border-left: 2px solid $gray-medium;
juliandoucette 2017/11/02 15:22:18 suggest: 1px lighter gray throughout
+ background-image: url(/img/png/arrow-icon-down-secondary.png);
+ background-image: linear-gradient(transparent, transparent),
+ url(/img/svg/arrow-icon-down-secondary.svg);
+ background-repeat: no-repeat;
+ background-position: center;
+ background-size: 0.7em;
+ content: "";
+}
+
+[dir="rtl"] .custom-select-dropdown .custom-select-selected:after
+{
+ right: auto;
+ left: 0;
+ border-right: 2px solid $gray-medium;
+ border-left: 0;
+}
+
+.custom-select-dropdown .custom-select-options
+{
+ top: 100%;
+ bottom: auto;
+}
« no previous file with comments | « static/scss/components/_browser-select.scss ('k') | static/scss/main.scss » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld