Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/menu.css
4507 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.MenuRenderer.
10
*/
11
12
@provide 'goog.css.menu';
13
14
.goog-menu {
15
background: #fff;
16
border-color: #ccc #666 #666 #ccc;
17
border-style: solid;
18
border-width: 1px;
19
cursor: default;
20
font: normal 13px Arial, sans-serif;
21
margin: 0;
22
outline: none;
23
padding: 4px 0;
24
position: absolute;
25
z-index: 20000; /* Arbitrary, but some apps depend on it... */
26
}
27
28