[ADD] doc: new documentation, with training tutorials, and new scaffolding
[odoo/odoo.git] / doc / _themes / odoodoc / static / bootstrap / less / dropdowns.less
1 //
2 // Dropdown menus
3 // --------------------------------------------------
4
5
6 // Dropdown arrow/caret
7 .caret {
8   display: inline-block;
9   width: 0;
10   height: 0;
11   margin-left: 2px;
12   vertical-align: middle;
13   border-top:   @caret-width-base solid;
14   border-right: @caret-width-base solid transparent;
15   border-left:  @caret-width-base solid transparent;
16 }
17
18 // The dropdown wrapper (div)
19 .dropdown {
20   position: relative;
21 }
22
23 // Prevent the focus on the dropdown toggle when closing dropdowns
24 .dropdown-toggle:focus {
25   outline: 0;
26 }
27
28 // The dropdown menu (ul)
29 .dropdown-menu {
30   position: absolute;
31   top: 100%;
32   left: 0;
33   z-index: @zindex-dropdown;
34   display: none; // none by default, but block on "open" of the menu
35   float: left;
36   min-width: 160px;
37   padding: 5px 0;
38   margin: 2px 0 0; // override default ul
39   list-style: none;
40   font-size: @font-size-base;
41   text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
42   background-color: @dropdown-bg;
43   border: 1px solid @dropdown-fallback-border; // IE8 fallback
44   border: 1px solid @dropdown-border;
45   border-radius: @border-radius-base;
46   .box-shadow(0 6px 12px rgba(0,0,0,.175));
47   background-clip: padding-box;
48
49   // Aligns the dropdown menu to right
50   //
51   // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`
52   &.pull-right {
53     right: 0;
54     left: auto;
55   }
56
57   // Dividers (basically an hr) within the dropdown
58   .divider {
59     .nav-divider(@dropdown-divider-bg);
60   }
61
62   // Links within the dropdown menu
63   > li > a {
64     display: block;
65     padding: 3px 20px;
66     clear: both;
67     font-weight: normal;
68     line-height: @line-height-base;
69     color: @dropdown-link-color;
70     white-space: nowrap; // prevent links from randomly breaking onto new lines
71   }
72 }
73
74 // Hover/Focus state
75 .dropdown-menu > li > a {
76   &:hover,
77   &:focus {
78     text-decoration: none;
79     color: @dropdown-link-hover-color;
80     background-color: @dropdown-link-hover-bg;
81   }
82 }
83
84 // Active state
85 .dropdown-menu > .active > a {
86   &,
87   &:hover,
88   &:focus {
89     color: @dropdown-link-active-color;
90     text-decoration: none;
91     outline: 0;
92     background-color: @dropdown-link-active-bg;
93   }
94 }
95
96 // Disabled state
97 //
98 // Gray out text and ensure the hover/focus state remains gray
99
100 .dropdown-menu > .disabled > a {
101   &,
102   &:hover,
103   &:focus {
104     color: @dropdown-link-disabled-color;
105   }
106 }
107 // Nuke hover/focus effects
108 .dropdown-menu > .disabled > a {
109   &:hover,
110   &:focus {
111     text-decoration: none;
112     background-color: transparent;
113     background-image: none; // Remove CSS gradient
114     .reset-filter();
115     cursor: not-allowed;
116   }
117 }
118
119 // Open state for the dropdown
120 .open {
121   // Show the menu
122   > .dropdown-menu {
123     display: block;
124   }
125
126   // Remove the outline when :focus is triggered
127   > a {
128     outline: 0;
129   }
130 }
131
132 // Menu positioning
133 //
134 // Add extra class to `.dropdown-menu` to flip the alignment of the dropdown
135 // menu with the parent.
136 .dropdown-menu-right {
137   left: auto; // Reset the default from `.dropdown-menu`
138   right: 0;
139 }
140 // With v3, we enabled auto-flipping if you have a dropdown within a right
141 // aligned nav component. To enable the undoing of that, we provide an override
142 // to restore the default dropdown menu alignment.
143 //
144 // This is only for left-aligning a dropdown menu within a `.navbar-right` or
145 // `.pull-right` nav component.
146 .dropdown-menu-left {
147   left: 0;
148   right: auto;
149 }
150
151 // Dropdown section headers
152 .dropdown-header {
153   display: block;
154   padding: 3px 20px;
155   font-size: @font-size-small;
156   line-height: @line-height-base;
157   color: @dropdown-header-color;
158   white-space: nowrap; // as with > li > a
159 }
160
161 // Backdrop to catch body clicks on mobile, etc.
162 .dropdown-backdrop {
163   position: fixed;
164   left: 0;
165   right: 0;
166   bottom: 0;
167   top: 0;
168   z-index: (@zindex-dropdown - 10);
169 }
170
171 // Right aligned dropdowns
172 .pull-right > .dropdown-menu {
173   right: 0;
174   left: auto;
175 }
176
177 // Allow for dropdowns to go bottom up (aka, dropup-menu)
178 //
179 // Just add .dropup after the standard .dropdown class and you're set, bro.
180 // TODO: abstract this so that the navbar fixed styles are not placed here?
181
182 .dropup,
183 .navbar-fixed-bottom .dropdown {
184   // Reverse the caret
185   .caret {
186     border-top: 0;
187     border-bottom: @caret-width-base solid;
188     content: "";
189   }
190   // Different positioning for bottom up menu
191   .dropdown-menu {
192     top: auto;
193     bottom: 100%;
194     margin-bottom: 1px;
195   }
196 }
197
198
199 // Component alignment
200 //
201 // Reiterate per navbar.less and the modified component alignment there.
202
203 @media (min-width: @grid-float-breakpoint) {
204   .navbar-right {
205     .dropdown-menu {
206       .dropdown-menu-right();
207     }
208     // Necessary for overrides of the default right aligned menu.
209     // Will remove come v4 in all likelihood.
210     .dropdown-menu-left {
211       .dropdown-menu-left();
212     }
213   }
214 }
215