nav.topMenu ul li:hover .dropDownCaption ~ .dropDown {
border-color: rgba(255, 255, 255, .5);
background-color: rgba(0, 0, 0, .7);
- height: auto !important;
+ display: block !important;
left: -1px;
}
}
nav.topMenu ul li .dropDown {
- border-width: 0 1px 1px 1px;
+ border-width: 0 1px 1px 1px !important;
border-radius: 0 0 5px 5px;
}
.dropDown {
color: #fff;
- border-width: 0 1px 1px 1px;
+ border-width: 1px;
border-style: solid;
- border-color: rgba(255, 255, 255, 0);
- border-radius: 5;
- background-color: rgba(0, 0, 0, 0);
+ border-color: rgba(255, 255, 255, .7);
+ border-radius: 5px;
+ background-color: rgba(0, 0, 0, .7);
margin-top: 25px;
+ display: none;
position: absolute;
top: 0;
left: 0;
- height: 0;
z-index: 500;
overflow: hidden;
transition: color background height .1s ease;
}
+.dropDown.open {
+ display: block;
+}
+
/* Dropdown Items */
.dropDown > li,
.dropDown > :hover:not(ul):not(.pointer),
.dropDown > .active {
color: #fff;
+ cursor: pointer;
background-color: rgba(0, 0, 0, .5);
}
border-top: 1px solid rgba(255, 255, 255, .7);
}
-.dropDown > li a {
+.dropDown > li {
text-decoration: none;
padding: 5px 7px;
- display: inline-block;
+ display: block;
+}
+
+.dropDown > li a {
+ text-decoration: none;
+ color: #ccc;
+ padding: -5px -7px;
+ display: block;
}
.dropDown > li a:hover {
- color: #fff !important;
+ color: #fff;
+ background-color: rgba(0, 0, 0, .5);
}
-/* ############## ToDo: Clipboard Editor ############## */
+/* ############## Clipboard Editor Buttons ############## */
/* Globals */
display: inline-block;
}
-/* ToDo: Dropdown (merge with other dropdown-declarations!) */
-
-.clipboardEditor ul > li > .dropDown,
-.aclContainer .dropDown {
- border: 1px solid rgba(255, 255, 255, .7);
- border-radius: 5px;
- background-color: rgba(0, 0, 0, .7);
- margin-top: 23px;
- display: none;
- position: absolute;
- top: 0;
- left: 0;
- height: auto;
-
- -webkit-box-shadow: 0 1px 7px rgba(0, 0, 0, .5);
- -moz-box-shadow: 0 1px 7px rgba(0, 0, 0, .5);
- -ms-box-shadow: 0 1px 7px rgba(0, 0, 0, .5);
- -o-box-shadow: 0 1px 7px rgba(0, 0, 0, .5);
- box-shadow: 0 1px 7px rgba(0, 0, 0, .5);
-}
-
-.clipboardEditor ul > li > .open,
-.aclContainer .open {
- display: block;
-}
-
-.clipboardEditor ul > li > ol > li {
- text-shadow: none;
- color: #ccc;
- cursor: pointer;
- padding: 5px 7px;
-
- -webkit-transition: color, background .2s linear;
- -moz-transition: color, background .2s linear;
- -ms-transition: color, background .2s linear;
- -o-transition: color, background .2s linear;
- transition: color, background .2s linear;
-}
-
-.clipboardEditor ul > li > ol > li:first-child {
- border-top-width: 0;
- border-top-left-radius: 5px;
- border-top-right-radius: 5px;
-}
-
-.clipboardEditor ul > li > ol > li:last-child {
- border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px;
-}
-
-.clipboardEditor ul > li > ol > li:hover {
- color: #fff;
- background-color: rgba(0, 0, 0, .5);
-}
-
-
/* ############## Global Button Color & Effect Library ############## */