Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/20/14 16:20:02 (10 years ago)
Author:
mroscoe
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Content/Site.css

    r11020 r11030  
    3939body > div {
    4040  max-width: 1000px;
     41  min-width: 680px;
    4142  margin: 0 auto;
    4243  padding: 0;
     
    4445  border-radius: 8px;
    4546  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.35);
     47}
     48
     49#ui-datepicker-div {
     50  min-width: 0px;
    4651}
    4752
     
    6166}
    6267
     68/* Error container styles */
     69.errorContainer {
     70  width: 95%;
     71  margin: 1% 0% 2% 2%;
     72  -webkit-border-radius: 10px;
     73  border-radius: 10px;
     74  border: 3px solid #FF270A;
     75  display: none;
     76}
     77
     78.errorTitle {
     79  width: 100%;
     80  padding-left: 2%;
     81  margin-bottom: 0%;
     82  color: #FF5640;
     83  font-size: 1.4em;
     84}
     85
     86.errorTask, .errorMessage {
     87  width: 40%;
     88  margin: 0% 0% 1% 0%;
     89  font-size: 1.3em;
     90  color: #FF5640;
     91  display: inline-block;
     92}
     93
     94.errorTask {
     95  margin-left: 2%;
     96}
     97
     98a.errorTask {
     99  cursor: pointer;
     100}
     101
     102.underline {
     103  text-decoration: underline;
     104  margin-top: 1.5%;
     105}
     106
     107#ScrollTop {
     108  width: 40px;
     109  height: 40px;
     110  position: absolute;
     111  right: 20px;
     112  top: 20px;
     113  background: none;
     114  color: #F7921D;
     115  -webkit-border-radius: 3px;
     116  -moz-border-radius: 3px;
     117  border-radius: 3px;
     118  border: 2px solid #F7921D;
     119  text-align: center;
     120  font-size: 14pt;
     121  display: none;
     122}
     123
     124#ScrollTop:hover {
     125  background-color: rgba(247,146,29,0.42);
     126}
     127
    63128/* Progress bar styles */
    64129.barLabel {
     
    72137.outerBar {
    73138  height: 25px;
    74   width: 80%;
     139  width: 75%;
    75140  margin-left: 10%;
    76141  border: 2px outset grey;
     142  display: inline-block;
    77143}
    78144
     
    109175
    110176.outerBarText {
    111   text-align: right;
     177  width: 5%;
     178  text-align: left;
     179}
     180
     181/* Tabular Diplay Styles */
     182.tabButton {
     183  margin: 3% 0% 0% 0%;
     184  background: none;
     185  color: #707070;
     186  font-size: 1.4em;
     187  -webkit-border-radius: 0 3px 0 0;
     188  border-radius: 0 5px 0 0;
     189  border: 1px solid #8297F5;
     190  text-align: center;
     191  z-index: 3;
     192}
     193
     194.tabButton:hover {
     195  background-color: #D1D9FF;
     196}
     197
     198.tabButton:focus {
     199  -webkit-border-radius: 0 3px 0 0;
     200  border-radius: 0 5px 0 0;
     201  border-bottom: 1px solid #FAFAFA;
     202}
     203
     204.tabSection {
     205  width: 90%;
     206  padding: 1%;
     207  margin: 0% 0% 3% 3%;
     208  -webkit-border-radius: 0 15px 15px 15px;
     209  border-radius: 0 15px 15px 15px;
     210  -webkit-box-shadow: 5px 5px 3px #A3A3A2;
     211  box-shadow: 5px 5px 3px #A3A3A2;
     212  border: 1px solid #8297F5;
     213  display: none;
     214}
     215
     216.tabDataContainer {
     217  width: 99%;
     218  display: inline-block;
     219}
     220
     221.taskOverview {
     222  width: 70%;
     223}
     224
     225.tabButton:first-of-type {
     226  border-bottom: 1px solid #E0E6FF;
     227  background-color: #E0E6FF;
     228  margin-left: 3%;
     229}
     230
     231.tabSection:first-of-type {
     232  display: block;
     233}
     234
     235/* Multi-page Task Styles */
     236.pageTitle, .page {
     237  margin-right: 1%;
     238  font-size: 1.8em;
     239  color: #6B6B6B;
     240}
     241
     242.pageTitle {
     243  margin-left: 2%;
     244}
     245
     246.page {
     247  text-decoration: underline;
     248  cursor: pointer;
     249}
     250
     251.page:hover {
     252  color: #F7921D;
    112253}
    113254
     
    316457}
    317458/* User Page Styles*/
    318 #tasksContainer div[id^="Task"] {
     459#TasksContainer div[id^="Task"] {
    319460  margin: 2% 0%;
    320461}
    321462
    322 #tasksContainer .jqplot-xaxis {
     463#TasksContainer .jqplot-xaxis {
    323464  display: none;
    324465}
     
    330471}
    331472
    332 #filters {
     473#FilterChoices {
     474  width: 15%;
     475  padding: 0% 2% 1% 2%;
     476  vertical-align: top;
     477}
     478
     479#FilterChoices label {
     480  width: 75%;
     481}
     482
     483#FilterChoices label:last-of-type {
     484  width: 50%;
     485}
     486
     487#FilterChoices input[type="checkbox"] {
     488  margin: .4em;
     489}
     490
     491#FilterChoices input[type="checkbox"], #FilterChoices label, #Filters label, #Filters input {
     492  font-size: 1.5em;
     493  display: inline-block;
     494}
     495
     496#FilterChoices legend, #Filters legend {
     497  font-size: 1.5em;
     498}
     499
     500#Filters, #FilterChoices{
    333501  margin: 2% 2% 3% 2%;
    334 }
    335 
    336 #filters legend, #filters label, #filters input {
    337   font-size: 1.6em;
     502  display: inline-block;
     503}
     504
     505#Filters {
     506  width: 71%;
     507  margin: 2% 0% 2% 0%;
     508}
     509
     510#TaskOverviewFilterFirst {
     511  margin-top: 0%;
     512}
     513
     514.filterContainer {
     515  width: 28%;
     516  margin: 0% 0% 1% 1%;
     517  vertical-align: top;
     518  display: none;
     519}
     520
     521.filterContainer:first-of-type {
     522  margin-left: 2%;
     523  display: inline-block;
     524}
     525
     526.filterContainer input, .filterContainer select, .filterContainer label {
     527  width: 90%;
     528  margin-left: 5%;
     529}
     530
     531#Filters button{
     532  margin: 1% 0% 1% 2%;
     533  display: block;
    338534}
    339535
    340536/* Admin Page Styles */
    341 [id$="OverviewButton"] {
    342   margin: 3% 0% 0% 0%;
    343   background: none;
    344   color: #707070;
    345   font-size: 1.4em;
    346   -webkit-border-radius: 0 3px 0 0;
    347   border-radius: 0 5px 0 0;
    348   border: 1px solid #8297F5;
    349   text-align: center;
    350   z-index: 3;
    351 }
    352 
    353 #UserOverviewButton {
    354   border-bottom: 1px solid #E0E6FF;
    355   background-color: #E0E6FF;
    356   margin-left: 3%;
    357 }
    358 
    359 [id$="OverviewButton"]:hover {
    360   background-color: #D1D9FF;
    361 }
    362 
    363 [id$="OverviewButton"]:focus {
    364   -webkit-border-radius: 0 3px 0 0;
    365   border-radius: 0 5px 0 0;
    366   border-bottom: 1px solid #FAFAFA;
    367 }
    368 
    369 [id$="OverviewTab"] {
    370   width: 90%;
    371   padding: 1%;
    372   margin: 0% 0% 3% 3%;
    373   -webkit-border-radius: 0 15px 15px 15px;
    374   border-radius: 0 15px 15px 15px;
    375   -webkit-box-shadow: 5px 5px 3px #A3A3A2;
    376   box-shadow: 5px 5px 3px #A3A3A2;
    377   border: 1px solid #8297F5;
    378   display: none;
    379 }
    380 
    381 #UserOverviewTab {
    382   display: block;
     537.usersField #FilterChoices {
     538  width: 92%;
     539  margin: 1% 0% 1% 2%;
     540}
     541
     542.usersField #FilterChoices legend {
     543  font-size: 1em;
     544  padding-top: 6%;
     545}
     546
     547.usersField #FilterChoices label {
     548  font-size: 1em;
     549  width: 60%;
     550  margin: 0% 0% 0% 10%;
     551}
     552
     553.usersField #FilterChoices label:last-of-type {
     554  width: 42%;
     555}
     556
     557.usersField #FilterChoices label:last-of-type {
     558  margin-bottom: 8%;
     559}
     560
     561.usersField #FilterChoices input[type="checkbox"] {
     562  margin: .3em;
     563}
     564
     565#UserOverviewTab #Filters {
     566  width: 67%;
     567  margin: 1% 0% 0% 2%;
     568}
     569
     570.tabSection .filterContainer {
     571  width: 27%;
    383572}
    384573
     
    402591  margin-top: 1em;
    403592}
    404 
    405 .adminDataContainer {
    406   width: 70%;
    407   padding-left: 1%;
    408   display: inline-block;
    409 }
Note: See TracChangeset for help on using the changeset viewer.