SAAS-948 - CSS overhaul for new show builder page

This commit is contained in:
Duncan Sommerville 2015-07-29 20:28:54 -04:00
parent 661a87dfbc
commit 8f5f0eb5fe
7 changed files with 426 additions and 115 deletions

View file

@ -13,8 +13,8 @@
*/
.context-menu-list {
margin:0;
padding:0;
margin:0;
padding:5px 0;
min-width: 120px;
max-width: 250px;
@ -23,6 +23,11 @@
list-style-type: none;
border: 1px solid #333333;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background: #f0f0f0;
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
@ -32,14 +37,14 @@
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
font-size: 14px;
}
.context-menu-item {
padding: 2px 5px;
background-color: #f0f0f0;
position: relative;
min-height: 18px;
min-height: 18px;
-moz-user-select: -moz-none;
display: block;
width: 100%;
@ -49,7 +54,7 @@
}
.context-menu-item.icon {
padding: 2px 2px 2px 28px;
padding: 2px 2px 2px 28px;
}
.context-menu-separator {
@ -60,6 +65,15 @@
.context-menu-item > label {
-moz-user-select: text;
padding: 3px 20px;
line-height: 20px;
color: #333333;
}
.context-menu-item > span {
padding: 3px 20px;
line-height: 20px;
color: #333333;
}
.context-menu-item.hover {
@ -92,7 +106,7 @@
http://css-tricks.com/13224-pseudo-spriting/ to get an idea of how to implement
.context-menu-item.icon:before {}
*/
.context-menu-item.icon { min-height: 18px; background-repeat: no-repeat; background-position: 4px 2px; }
.context-menu-item.icon { min-height: 26px; background-repeat: no-repeat; background-position: 4px 2px; }
.context-menu-item.icon-edit { background-image: url(images/icon_edit_cm.png); }
.context-menu-item.icon-cut { background-image: url(images/icon_cut_cm.png); }
.context-menu-item.icon-copy { background-image: url(images/icon_copy_cm.png); }