diff options
Diffstat (limited to 'module/web/static/css/default')
| -rw-r--r-- | module/web/static/css/default/common.less | 2 | ||||
| -rw-r--r-- | module/web/static/css/default/dashboard.less | 48 | ||||
| -rw-r--r-- | module/web/static/css/default/style.less | 4 | 
3 files changed, 49 insertions, 5 deletions
| diff --git a/module/web/static/css/default/common.less b/module/web/static/css/default/common.less index ba96bb4ed..97cc20463 100644 --- a/module/web/static/css/default/common.less +++ b/module/web/static/css/default/common.less @@ -39,9 +39,11 @@  @green: #468847;  @greenLight: lighten(spin(@green, 5), 10%); +@greenDark: darken(spin(@green, -5), 10%);  @red: #b94a48;  @redLight: lighten(spin(@red, 5), 10%); +@redDark: darken(spin(@red, -5), 10%);  @emph: #FF7637; diff --git a/module/web/static/css/default/dashboard.less b/module/web/static/css/default/dashboard.less index 72758959c..12d833168 100644 --- a/module/web/static/css/default/dashboard.less +++ b/module/web/static/css/default/dashboard.less @@ -156,14 +156,38 @@  }
  .file-view {
 +  position: relative;
    margin-bottom: 3px;
    color: @light;
    .gradient(top, @blue, @blueLight); //  background-color: @blue;
    border-radius: 5px;
    line-height: 28px;
 +
    &:hover {
      .gradient(top, @blue, @blueDark);
    }
 +
 +  &.selected {
 +    .gradient(top, @yellow, @yellowDark);
 +    color: @dark;
 +
 +    .iconf-chevron-down:hover {
 +      color: @light;
 +    }
 +
 +  }
 +
 +  img {
 +    padding: 0 2px;
 +    height: 24px;
 +    width: 24px;
 +  }
 +
 +  .iconf-chevron-down:hover {
 +    cursor: pointer;
 +    color: @yellow;
 +  }
 +
  }
  .file-row {
 @@ -185,22 +209,36 @@    width: 50%;
    font-weight: bold;
 -  .icon-file {
 +  .icon-white {
      cursor: move;
    }
  }
  .file-row.second {
 +  color: @light;
 +  font-size: small;
    width: 20%;
    .gradient(top, @blueDark, @blueDarker);
 -  font-size: smaller;
  }
 -.file-view a {
 -  color: @light;
 +.file-row.third {
 +  font-size: small;
 +
 +  .dropdown-menu {
 +    font-size: medium;
 +  }
 +
  }
 +//.file-row.finished {
 +//  .gradient(top, @green, @greenLight);
 +//}
 +//
 +//.file-row.failed {
 +//  .gradient(top, @red, @redLight);
 +//}
 +
  /*
  FANCY CHECKBOXES
  */
 @@ -214,6 +252,6 @@ FANCY CHECKBOXES    cursor: pointer;
  }
 -.file-view .checkbox.checked {
 +.file-view.selected .checkbox {
    background: url(../../img/default/checks_sheet.png) -21px top no-repeat;
  }
 diff --git a/module/web/static/css/default/style.less b/module/web/static/css/default/style.less index 7c857227f..c009a3920 100644 --- a/module/web/static/css/default/style.less +++ b/module/web/static/css/default/style.less @@ -271,6 +271,10 @@ header .logo {    font-size: small;
    li {
 +    background-repeat: no-repeat;
 +    background-size: 32px 32px;
 +    background-position: 0px 8px;
 +    padding-left: 38px;
      &:not(:last-child) {
        margin-bottom: 5px;
 | 
