Skip to content
This repository has been archived by the owner on Oct 13, 2019. It is now read-only.

Commit

Permalink
Added danger + warning panel styles
Browse files Browse the repository at this point in the history
  • Loading branch information
scar45 committed Mar 7, 2014
1 parent f9b5b06 commit b2493c4
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -7,3 +7,4 @@ pure-assets/
vectorstock/
web.config
*.bak
Thumbs.db
38 changes: 34 additions & 4 deletions css/rigwatch-base.css
Expand Up @@ -137,7 +137,7 @@ table.table-wallet a, table.table-wallet a:visited, table.table-wallet a:hover {
}

.red {
color: #EE5F5B !important;
color: #ED3838 !important;
}

.blue {
Expand Down Expand Up @@ -202,7 +202,7 @@ table.table-wallet a, table.table-wallet a:visited, table.table-wallet a:hover {
}

#alert-update .alert-dismiss, #alert-update .alert-dismiss:hover {
color: #f77;
color: #ED3838;
position: relative;
top: 3px;
margin-left: 10px;
Expand Down Expand Up @@ -292,7 +292,7 @@ table.table-wallet a, table.table-wallet a:visited, table.table-wallet a:hover {
}

.form-horizontal .form-group.temp-thresholds div.temp-set-danger input {
border: 2px solid #EE5F5B;
border: 2px solid #ED3838;
}

.form-horizontal .form-group.temp-thresholds span {
Expand Down Expand Up @@ -817,6 +817,36 @@ a#dash-add-panel {
background: rgba(255,255,255,0.2);
}

.panel-warning {
border-color: #6e6e6e #F89406 #F89406 #33b5e5;
}

.panel-warning > .panel-heading {
background: #047195;
background: -moz-linear-gradient(left, #047195 0%, #33b5e5 49%, #F89406 100%);
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#047195), color-stop(49%,#33b5e5), color-stop(100%,#F89406));
background: -webkit-linear-gradient(left, #047195 0%,#33b5e5 49%,#F89406 100%);
background: -o-linear-gradient(left, #047195 0%,#33b5e5 49%,#F89406 100%);
background: -ms-linear-gradient(left, #047195 0%,#33b5e5 49%,#F89406 100%);
background: linear-gradient(to right, #047195 0%,#33b5e5 49%,#F89406 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#047195', endColorstr='#F89406',GradientType=1 );
}

.panel-danger {
border-color: #6e6e6e #CC0000 #CC0000 #33b5e5;
}

.panel-danger > .panel-heading {
background: #047195;
background: -moz-linear-gradient(left, #047195 0%, #33b5e5 49%, #ED3838 100%);
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#047195), color-stop(49%,#33b5e5), color-stop(100%,#ED3838));
background: -webkit-linear-gradient(left, #047195 0%,#33b5e5 49%,#ED3838 100%);
background: -o-linear-gradient(left, #047195 0%,#33b5e5 49%,#ED3838 100%);
background: -ms-linear-gradient(left, #047195 0%,#33b5e5 49%,#ED3838 100%);
background: linear-gradient(to right, #047195 0%,#33b5e5 49%,#ED3838 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#047195', endColorstr='#ED3838',GradientType=1 );
}

.panel h1 {
position: absolute;
top: -48px;
Expand Down Expand Up @@ -1263,7 +1293,7 @@ a#dash-add-panel {
}

.panel-body .stat-pair .stat-value i.health-danger {
color: #EE5F5B;
color: #ED3838;
}

.panel-body .progress {
Expand Down
1 change: 1 addition & 0 deletions user_data/.htaccess
@@ -0,0 +1 @@
Deny from all

0 comments on commit b2493c4

Please sign in to comment.