Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/submenu.css
2868 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
* @author [email protected] (Attila Bodis)
12
*/
13
14
15
/* State: resting. */
16
/* @noflip */
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
26
/* BiDi override. */
27
/* @noflip */
28
.goog-menuitem-rtl .goog-submenu-arrow {
29
text-align: left;
30
left: 0;
31
right: auto;
32
padding-left: 6px;
33
}
34
35
/* State: disabled. */
36
.goog-menuitem-disabled .goog-submenu-arrow {
37
color: #ccc;
38
}
39
40