superfish.css 3.85 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.sf-menu li {
	position: relative;
}
.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	right: 0;
	z-index: 99;
}
.sf-menu > li {
	float: left;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}
.sf-menu > li.right_menu{
    float:right;
}

.sf-menu a {
	display: block;
	position: relative;
}
.sf-menu ul ul {
	top: 0;
  left:0;
}


/*** DEMO SKIN ***/
.sf-menu {
	float: left;
	margin-bottom: 1em;
}
.sf-menu ul {
	box-shadow: 2px 2px 6px rgba(0,0,0,.2);
45 46
	min-width: 16em; /* allow long menu items to determine submenu width */
	*width: 16em; /* no auto sub width for IE7, see white-space comment below */
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
  border: 1px solid #C2C2C2;
  background: #E4E4E4;
  border-left:none;
  padding-bottom:2px;
}
.sf-menu li a {
	display:block;
  height: 20px;
  color: #074A86;
  border-right: 1px solid #c2c2c2;
  font-weight:bold;
  font-size:15px;
  text-decoration:none;
  padding:7px 20px;
	zoom: 1; /* IE7 */
}
.sf-menu li {
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
}
.sf-menu li.right_menu > a{
  border-left: 1px solid #c2c2c2;
  border-right:none;
  width: 35px;
  padding:7px;
}
73 74 75 76 77 78 79 80 81
.sf-menu li.main_menu{
  background: url(../images/main_menu.png) center no-repeat;
}
.sf-menu li.slapos_run{
  background: url(../images/run_button.png) center no-repeat;
}
.sf-menu li.slapos_stop{
  background: url(../images/stop_button.png) center no-repeat;
}
82 83 84 85 86 87 88 89
.sf-menu li:hover,
.sf-menu li.sfHover {
  color: #fff;/*#0271BF;*/
  background:#c2c2c2;
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}
90 91 92 93 94 95 96 97 98 99 100 101
.sf-menu li.main_menu:hover,
.sf-menu li.main_menu.sfHover {
  background: #c2c2c2 url(../images/main_menu_hover.png) center no-repeat;
}
.sf-menu li.slapos_stop:hover,
.sf-menu li.slapos_stop.sfHover{
  background: #c2c2c2 url(../images/stop_button2.png) center no-repeat;
}
.sf-menu li.slapos_run:hover,
.sf-menu li.slapos_run.sfHover{
  background: #c2c2c2 url(../images/run_button2.png) center no-repeat;
}
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
.sf-menu li a:hover{
  color: #fff;
}

.sf-menu ul li {
	background: #E4E4E4;
  cursor: pointer;
  color: #000;
}
.sf-menu ul li.sep{border-bottom: 1px solid #c2c2c2; margin: 3px 0;}
.sf-menu ul li.sep:hover{
  background: #E4E4E4;
}
.sf-menu ul ul li {
	background: #E4E4E4;
}
.sf-menu ul ul{
  border: 1px solid #C2C2C2;
  border-left:none;
}
.sf-menu ul li a{
  font-weight:normal;
  font-size:14px;
  color: #000;
  height: 16px;
  padding:7px;
  padding-left: 15px;
  border:none;
}
.sf-menu ul li:hover,
.sf-menu ul li.sfHoverhover{
  background: #A3A3A3;
}
.sf-menu ul li:hover a,
.sf-menu ul li.sfHoverhover a{
  color: #fff;
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
	padding-right: 2.5em;
	*padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	margin-top: -3px;
	height: 0;
	width: 0;
	/* order of following 3 rules important for fallbacks to work */
	border: 5px solid transparent;
	border-top-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-top-color: rgba(255,255,255,.5);
}
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
	border-top-color: white; /* IE8 fallback colour */
}
/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	margin-top: -5px;
	margin-right: -3px;
	border-color: transparent;
	border-left-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(255,255,255,.5);
}
.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
	border-left-color: white;
}