github.com/billybanfield/evergreen@v0.0.0-20170525200750-eeee692790f7/public/static/less/task.less (about)

     1  .active-label {
     2  	float: right;
     3  }
     4  .current-history {
     5  	background-color: #ddd;
     6  }
     7  #event-log-row {
     8      margin-top: 20px;
     9      margin-left: 20px;
    10      font-size: 20px;
    11  }
    12  .history-commit-message {
    13  	overflow: hidden;
    14  	text-overflow: ellipsis;
    15  	font-weight: bold;
    16  }
    17  .history-progress {
    18  	margin: 0px;
    19  	background-color: #999;
    20  }
    21  #history-headingwrap {
    22    position: relative;
    23  }
    24  #fullhistorylink {
    25  	position: absolute;
    26  	right: 0px;
    27  	bottom: 0px;
    28  }
    29  .label-link {
    30  	&:hover {
    31  		opacity: .8;
    32  		cursor: pointer;
    33  	}
    34  }
    35  #log-type-toggle {
    36  	font-size: 18px;
    37  }
    38  #logs-options {
    39  	float: right;
    40  	font-size: 18px;
    41  }
    42  #task-info-elements {
    43    margin-top: 20px;
    44    width:100%;
    45    
    46    i {
    47      margin-right: 10px;
    48    }
    49    td {
    50      padding: 3px 0;
    51      text-align:left;
    52    }
    53    td.icon{
    54      padding-right:10px;
    55      text-align:right;
    56      width:20px;
    57    }
    58    tr {
    59      margin-top:20px;
    60      padding-top:10px;
    61    }
    62  }
    63  #tests-info {
    64  	max-height: 300px;
    65  	overflow: auto;
    66  	margin-top: 10px;
    67    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.05);
    68  }
    69  
    70  // admin stuff
    71  .last-successful-task h2 {
    72  	font-size: 20px;
    73  	background-color: #f0f0f0;
    74  	border-top: 1px solid #5cb85c;
    75  	margin-top: 10px;
    76  	margin-bottom: 10px;
    77  	margin-left: -15px;
    78  	padding: 15px;
    79  }
    80  .test-result-row .fa-link {
    81    display: none;
    82  }
    83  .test-result-row:hover .fa-link {
    84    display: block;
    85  }
    86  .test-result-row .test-result-link-wrapper {
    87    left: -1.66em;
    88    color: #bbb;
    89    width: 1em;
    90    height: 1em;
    91    float: left;
    92    position: relative;
    93  }
    94  .test-result-row .test-result-name {
    95    position: relative;
    96    left: -1em;
    97    float: left;
    98    max-width: 100%;
    99    margin-right: -1em;
   100  }
   101  .test-results-table {
   102    table-layout: fixed;
   103    word-wrap: break-word;
   104  
   105    .progress {
   106      margin-bottom: 0;
   107    }
   108  }
   109  .files-panel {
   110    .file-name {
   111      min-width: 160px;
   112    }
   113    
   114    .file-link {
   115      word-break: break-all;
   116      font-family: monospace;
   117    }
   118    .files-list{
   119      overflow:hidden;
   120      text-overflow:ellipsis;
   121      whitespace:nowrap;
   122    }
   123  }
   124  
   125  #page-content {
   126    position: absolute;
   127    top: 50px;
   128    bottom: 0;
   129    right: 0;
   130    left: 265px;
   131    padding: 0 15px;
   132    overflow-x: hidden;
   133    overflow-y: scroll;
   134  }
   135  
   136  // drawer stylings
   137  #drawer {
   138    position: absolute;
   139    top: 50px;
   140    bottom: 0;
   141    left: 0;
   142    width: 260px;
   143    overflow-x: hidden;
   144    overflow-y: hidden;
   145    border-right: 1px solid #dee0e3;
   146  
   147    /*
   148      position: absolute;
   149      top: 50px;
   150      bottom: 0;
   151      left: 0;
   152      width: 260px;
   153      overflow-x: hidden;
   154      overflow-y: hidden;
   155      border-right: 1px solid @gray6;
   156      */
   157  }
   158  #drawer-contents {
   159      position: absolute;
   160      top: 0;
   161      bottom: 0;
   162      right: 0;
   163      left: 0;
   164      overflow-x: hidden;
   165      overflow-y: scroll;
   166  }
   167  .drawer-item {
   168      padding: 7px 5px;
   169      border-bottom: 1px solid @gray6;
   170      background: @gray7;
   171      position: relative;
   172  
   173      a {
   174          color: @gray1;
   175      }
   176      &:hover {
   177          background: @gray8;
   178      }
   179      .drawer-message-wrapper {
   180        min-height: 17px;
   181      }
   182  }
   183  .drawer-item-highlighted {
   184      background-color: @pw;
   185  
   186      a {
   187          color: @gray0;
   188      }
   189      &:hover {
   190          background: @pw;
   191      }
   192  }
   193  .drawer-section-header {
   194      padding: 2px 5px;
   195      background-color: @gray3;
   196  }
   197  
   198  // history-specific stylings
   199  .history-date-header-words {
   200      font-size: 12px;
   201      font-weight: bold;
   202      text-transform: uppercase;
   203      color: @pw;
   204  
   205      @media(max-width: 768px) {
   206          display: none;
   207      }
   208  }
   209  .history-date-header-slash {
   210      @media(max-width: 768px) {
   211          display: none;
   212      }
   213  }
   214  .history-date-header-numbers {
   215      font-size: 12px;
   216      color: @gray7;
   217      padding-top: 2px;
   218      float: right;
   219  }
   220  .history-status-marker {
   221      position: absolute;
   222      width: 10px;
   223      top: 7px;
   224      bottom: 7px;
   225      margin: -7px 0 -7px -5px;
   226  
   227      &.inactive {
   228          background: @gray5;
   229      }
   230  }
   231  .history-item-info {
   232      position: absolute;
   233      left: 28px;
   234      right: 70px;
   235      font-size: 12px;
   236      overflow-x: hidden;
   237      text-overflow: ellipsis;
   238      white-space: nowrap;
   239  }
   240  .history-item-revision {
   241      text-transform: none;
   242      font-size:.9em;
   243      font-weight:bold;
   244      font-family: Menlo, Monaco, monospace;
   245      padding: 0px 3px 0px 3px;
   246      margin-right:3px;
   247  }
   248  .history-item-message {
   249      overflow: hidden;
   250      text-overflow: ellipsis;
   251      white-space: nowrap;
   252  }
   253  .history-item-time { 
   254      position: absolute;
   255      right: 18px;
   256      top: 2px;
   257      font-size: 11px;
   258      color: @gray2;
   259  }
   260  .history-item-failures {
   261      margin-left: 0;
   262      font-size: 12px;
   263  
   264      * {
   265          overflow: hidden;
   266          text-overflow: ellipsis;
   267          white-space: nowrap;
   268      }
   269  }
   270  .dep-status {
   271    width: 22px;
   272    i {
   273      vertical-align: middle;
   274    }
   275  }
   276  .dep-task-status {
   277    span {
   278      vertical-align: middle;
   279    }
   280  }
   281  .dep-table {
   282    margin-bottom: 0;
   283    .cross-variant{
   284      font-weight: bold;
   285    }
   286  }
   287  .host-btn-group{
   288    padding-left:20px;
   289    display:inline;
   290  }
   291  .host-info-item{
   292    margin-right:5px;
   293    a{
   294      color:white;
   295    }
   296    text-transform:none;
   297  }
   298  //HTML and Raw log link formatting
   299  .url-link {
   300    width: 40%;
   301    display: inline-block;
   302  }
   303  #html-link {
   304    text-align: right;
   305  }
   306  #raw-link {
   307    text-align: left;
   308  }
   309  #separator  {
   310    width: 3%;
   311    display: inline-block;
   312  }
   313  .task-logs {
   314    font-size: 14pt;
   315  }
   316  #view-as {
   317    opacity: 0.5;
   318    font-size: 12pt;
   319  }
   320  .task-log-links {
   321    font-size: 14pt;
   322  }
   323  #task-title {
   324    margin-bottom: 4px;
   325  }