diff options
Diffstat (limited to 'module/web/static')
-rw-r--r-- | module/web/static/css/default/dashboard.less | 2 | ||||
-rw-r--r-- | module/web/static/css/default/style.less | 20 | ||||
-rw-r--r-- | module/web/static/img/default/box-separator.png | bin | 0 -> 1180 bytes | |||
-rw-r--r-- | module/web/static/js/views/packageView.js | 2 |
4 files changed, 13 insertions, 11 deletions
diff --git a/module/web/static/css/default/dashboard.less b/module/web/static/css/default/dashboard.less index d67f6ce98..e60a21dfb 100644 --- a/module/web/static/css/default/dashboard.less +++ b/module/web/static/css/default/dashboard.less @@ -103,7 +103,7 @@ }
.package-row.second {
- width: 30%;
+ width: 20%;
.gradient(top, @blueDark, @blueDarker);
font-size: smaller;
}
diff --git a/module/web/static/css/default/style.less b/module/web/static/css/default/style.less index 7a4ed6ed3..e1b4e417e 100644 --- a/module/web/static/css/default/style.less +++ b/module/web/static/css/default/style.less @@ -23,7 +23,8 @@ @grey: #757575;
@greyLight: #E5E5E5;
@greyLighter: #F5F5F5;
-@greyDark: #111113;
+@greyDark: #444444;
+@greyDarker: #111113;
@yellow: #fee247;
@yellowLighter: lighten(spin(@yellow, 10), 20%);
@@ -261,18 +262,18 @@ header .logo { // Responsive Borders
.header_block.left-border {
- border-left: 1px solid @grey;
+ background: url("../../img/default/box-separator.png") repeat-y;
padding-left: 1%;
}
.header_block.right-border {
- border-right: 1px solid @grey;
+ background: url("../../img/default/box-separator.png") repeat-y right;
padding-right: 1%;
}
@media (max-width: @large-screen) {
.header_block {
- border: none !important;
+ background: none !important;
padding: 0 !important;
}
}
@@ -286,25 +287,26 @@ header .logo { .notifications-area {
display: inline;
+ opacity: 1;
color: #fff;
height: 14px;
line-height: 14px;
font-size: small;
- background-color: @grey;
- border: 5px solid @grey;
+ background-color: @greyDark;
+ border: 5px solid @greyDark;
border-radius: 0 0 5px 5px;
}
#globalprogress {
- background-color: @grey;
+ background-color: @greyDark;
background-image: none;
height: 15px;
- margin: 8px 5px 0;
+ margin: 8px 0 0;
line-height: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
- border: 3px solid #242424;
+ border: 3px solid @grey;
.bar {
color: @dark;
diff --git a/module/web/static/img/default/box-separator.png b/module/web/static/img/default/box-separator.png Binary files differnew file mode 100644 index 000000000..9860fd9e9 --- /dev/null +++ b/module/web/static/img/default/box-separator.png diff --git a/module/web/static/js/views/packageView.js b/module/web/static/js/views/packageView.js index 17b6bc06f..22cc846ef 100644 --- a/module/web/static/js/views/packageView.js +++ b/module/web/static/js/views/packageView.js @@ -9,7 +9,7 @@ define(['jquery', 'views/abstract/itemView', 'underscore', 'views/fileView'], template: _.compile($("#template-package").html()), events: { 'click .package-row .name': 'expand', - 'click .delete': 'delete', + 'click .icon-remove': 'delete', 'click .checkbox': 'select' }, |