Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/closure/goog/css/submenu.css
4010 views
1
/*
2
* Copyright 2009 The Closure Library Authors. All Rights Reserved.
3
*
4
* Use of this source code is governed by the Apache License, Version 2.0.
5
* See the COPYING file for details.
6
*/
7
8
/*
9
* Standard styling for menus created by goog.ui.SubMenuRenderer.
10
*/
11
12
@provide 'goog.css.submenu';
13
14
/* State: resting. */
15
/* @noflip */
16
/* rtl:begin:ignore */
17
.goog-submenu-arrow {
18
color: #000;
19
left: auto;
20
padding-right: 6px;
21
position: absolute;
22
right: 0;
23
text-align: right;
24
}
25
/* rtl:end:ignore */
26
27
/* BiDi override. */
28
/* @noflip */
29
/* rtl:begin:ignore */
30
.goog-menuitem-rtl .goog-submenu-arrow {
31
text-align: left;
32
left: 0;
33
right: auto;
34
padding-left: 6px;
35
}
36
/* rtl:end:ignore */
37
38
/* State: disabled. */
39
.goog-menuitem-disabled .goog-submenu-arrow {
40
color: #ccc;
41
}
42
43