includes/clientside/css/enano-shared.css
changeset 581 5e8fd89c02ea
parent 563 0103428e2179
child 594 738c61b498a6
equal deleted inserted replaced
580:41c45314ac27 581:5e8fd89c02ea
   155 /* Tables */
   155 /* Tables */
   156 .tblholder                        { margin: 10px 0 0 0; padding: 0; border: 1px solid #AAAAAA; background-color: #E8E8E8; }
   156 .tblholder                        { margin: 10px 0 0 0; padding: 0; border: 1px solid #AAAAAA; background-color: #E8E8E8; }
   157 
   157 
   158 /* The beautiful tables inside what may not obviously be mdg-comment divs */
   158 /* The beautiful tables inside what may not obviously be mdg-comment divs */
   159 div.tblholder td.row1             { padding: 4px; background-color: #E0E0E0; }
   159 div.tblholder td.row1             { padding: 4px; background-color: #E0E0E0; }
   160 div.tblholder td.row2             { padding: 4px; background-color: #F0F0F0; }
   160 div.tblholder td.row2             { padding: 4px; background-color: #F0F0F0 !important; } /* using !important allows emphasized cells like in autosuggest to be highlighted */
   161 div.tblholder td.row3             { padding: 4px; background-color: #E8E8E8; }
   161 div.tblholder td.row3             { padding: 4px; background-color: #E8E8E8; }
   162 div.tblholder th                  { padding: 4px; background-color: #7080A0; font-weight: bold; text-align: center; color: #FFFFFF; }
   162 div.tblholder th                  { padding: 4px; background-color: #7080A0; font-weight: bold; text-align: center; color: #FFFFFF; }
   163 div.tblholder th.subhead          { padding: 4px; background-color: #90A0B0; font-weight: bold; text-align: center; color: #FFFFFF; }
   163 div.tblholder th.subhead          { padding: 4px; background-color: #90A0B0; font-weight: bold; text-align: center; color: #FFFFFF; }
   164 div.tblholder table               { background-color: #FFFFFF; width: 100%; }
   164 div.tblholder table               { background-color: #FFFFFF; width: 100%; }
   165 
   165 
   236   cursor: pointer;
   236   cursor: pointer;
   237 }
   237 }
   238 
   238 
   239 div.js-search-submit:hover {
   239 div.js-search-submit:hover {
   240   background-image: url(../../../images/search-btn-hilite.png);
   240   background-image: url(../../../images/search-btn-hilite.png);
   241 }
       
   242 
       
   243 input[type ^="text"].username, input[type ^="password"].password {
       
   244   padding: 2px 2px 2px 27px;
       
   245   width: 96px;
       
   246   height: 15px;
       
   247   border: 0px none #000;
       
   248   font-size: 11px;
       
   249 }
       
   250 input[type ^="text"].username {
       
   251   background-image: url(../../../images/login-username.png);
       
   252 }
       
   253 input[type ^="password"].password {
       
   254   background-image: url(../../../images/login-password.png);
       
   255 }
   241 }
   256 
   242 
   257 /*
   243 /*
   258  * jBox menu system
   244  * jBox menu system
   259  */
   245  */
   825 }
   811 }
   826 
   812 
   827 div.rankadmin-right {
   813 div.rankadmin-right {
   828   float: left;
   814   float: left;
   829 }
   815 }
       
   816 
       
   817 /* Spry auto-suggestion */
       
   818 .hideSuggestClass
       
   819 {
       
   820 	max-height: 200px;
       
   821 	overflow:auto;
       
   822 	display:none;
       
   823 	width: 175px;
       
   824 	margin: 0px;
       
   825 	cursor: pointer;
       
   826 	z-index: 1011;
       
   827 }
       
   828 
       
   829 .showSuggestClass .hideSuggestClass
       
   830 {
       
   831 	display: block !important;
       
   832 }
       
   833