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

Side by Side Diff: static/scss/_navbar.scss

Issue 29587584: Issue 5635 - Implement website-default navbar component (Closed) Base URL: https://hg.adblockplus.org/website-defaults
Patch Set: Demo of both methods Created Nov. 6, 2017, 8:18 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // This file is part of help.eyeo.com.
2 // Copyright (C) 2017 Eyeo GmbH
3 //
4 // help.eyeo.com is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // help.eyeo.com is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with help.eyeo.com. If not, see <http://www.gnu.org/licenses/>.
16
17 /*******************************************************************************
18 * Navbar component (Table Layout Method)
19 ******************************************************************************/
20
21 #table-navbar .navbar .container
22 {
23 display: table;
24 width: 100%;
25 max-width: $large-desktop-width;
26 }
27
28 #table-navbar .navbar button
juliandoucette 2017/11/06 12:36:43 NIT: Perhaps button should normally inherit color?
ire 2017/11/08 17:14:46 Done.
29 {
30 color: inherit;
31 }
32
33 #table-navbar .navbar-branding,
34 #table-navbar .toggle-navbar-collapse,
35 #table-navbar .navbar-collapse
36 {
37 display: table-cell;
38 padding-top: $small-space;
39 padding-bottom: $small-space;
40 vertical-align: middle;
41 }
42
43 /* .navbar .toggle-navbar-collapse
44 ****************************************************************************/
45
46 #table-navbar .toggle-navbar-collapse
47 {
48 display: none;
49 }
50
51 .js #table-navbar .toggle-navbar-collapse
52 {
53 display: table-cell;
54
55 @media (min-width: $tablet-breakpoint)
56 {
57 display: none;
58 }
59 }
60
61 #table-navbar .toggle-navbar-collapse button
juliandoucette 2017/11/06 12:36:43 TOL: Perhaps we could use (extend) a (link button
ire 2017/11/08 17:14:46 Done.
62 {
63 min-width: 100px;
64 border: 0;
65 background-color: transparent;
66 cursor: pointer;
67 }
68
69 .js #table-navbar .toggle-navbar-collapse .close-label
70 {
71 display: none;
72 }
73
74 #table-navbar .expanded .toggle-navbar-collapse .open-label
75 {
76 display: none;
77 }
78
79 #table-navbar .expanded .toggle-navbar-collapse .close-label
80 {
81 display: inline;
82 }
83
84 /* .navbar .navbar-collapse
85 ****************************************************************************/
86
87 #table-navbar .navbar-collapse
88 {
89 display: table-row;
90 text-align: left;
91
92 @media (min-width: $tablet-breakpoint)
93 {
94 display: table-cell;
95 text-align: right;
96 }
97 }
98
99 [dir="rtl"] #table-navbar .navbar-collapse
100 {
101 text-align: right;
102
103 @media (min-width: $tablet-breakpoint)
104 {
105 text-align: left;
106 }
107 }
108
109 .js #table-navbar .navbar-collapse
110 {
111 display: none;
112
113 @media (min-width: $tablet-breakpoint)
114 {
115 display: table-cell;
116 }
117 }
118
119 #table-navbar .expanded .navbar-collapse
120 {
121 display: table-row;
122 }
123
124 .no-js #table-navbar .navbar-collapse:after,
125 #table-navbar .expanded .navbar-collapse:after
126 {
127 @media (max-width: $tablet-breakpoint + 1px)
128 {
129 display: block;
130 height: $small-space;
131 content: "";
132 }
133 }
134
135
136 /*******************************************************************************
137 * Navbar component (Float Method)
138 ******************************************************************************/
139
140 #floated-navbar .navbar
141 {
142 @extend .clearfix;
143 }
144
145 #floated-navbar .navbar button
146 {
147 border: 0;
148 color: inherit;
149 background-color: transparent;
150 cursor: pointer;
151 }
152
153 #floated-navbar .navbar-branding,
154 #floated-navbar .toggle-navbar-collapse,
155 #floated-navbar .navbar-collapse
156 {
157 padding-top: $small-space;
158 padding-bottom: $small-space;
159 }
160
161 /* .navbar .toggle-navbar-collapse
162 ****************************************************************************/
163
164 #floated-navbar .toggle-navbar-collapse
165 {
166 display: none;
167 border: 0;
168 background-color: transparent;
169 cursor: pointer;
170 }
171
172 .js #floated-navbar .toggle-navbar-collapse
173 {
174 display: block;
175
176 @media (min-width: $tablet-breakpoint)
177 {
178 display: none;
179 }
180 }
181
182 .js #floated-navbar .toggle-navbar-collapse .close-label
183 {
184 display: none;
185 }
186
187 #floated-navbar .expanded .toggle-navbar-collapse .open-label
188 {
189 display: none;
190 }
191
192 #floated-navbar .expanded .toggle-navbar-collapse .close-label
193 {
194 display: inline;
195 }
196
197 /* .navbar .navbar-collapse
198 ****************************************************************************/
199
200 #floated-navbar .navbar-collapse
201 {
202 clear: both;
203 padding-top: 0;
204
205 @media (min-width: $tablet-breakpoint)
206 {
207 float: right;
208 clear: none;
209 padding-top: $small-space;
210 }
211 }
212
213 [dir="rtl"] #floated-navbar .navbar-collapse
214 {
215 float: left;
216 }
217
218 .js #floated-navbar .navbar-collapse
219 {
220 display: none;
221
222 @media (min-width: $tablet-breakpoint)
223 {
224 display: block;
225 }
226 }
227
228 #floated-navbar .expanded .navbar-collapse
229 {
230 display: block;
231 }
OLDNEW
« static/js/navbar.js ('K') | « static/js/navbar.js ('k') | static/scss/_utilities.scss » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld