-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
208 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<gresources> | ||
<gresource prefix="/com/github/stsdc/monitor"> | ||
<file alias="Application.css" compressed="true">Application.css</file> | ||
<file alias="light.css" compressed="true">light.css</file> | ||
<file alias="dark.css" compressed="true">dark.css</file> | ||
</gresource> | ||
</gresources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
.roundy-label, | ||
.roundy-label:hover, | ||
.roundy-label:selected, | ||
.roundy-label:selected:focus, | ||
.roundy-label:hover:selected { | ||
background-image: none; | ||
background-color: @SILVER_900; | ||
box-shadow: none; | ||
color: alpha(@text_color, 0.7); | ||
font-weight: 700; | ||
border-radius: 10px; | ||
padding: 0 6px; | ||
margin: 0 3px; | ||
border-width: 0; | ||
} | ||
|
||
.green { | ||
background-color: alpha(@LIME_300, 0.6); | ||
} | ||
|
||
.blue { | ||
background-color: alpha(@BLUEBERRY_300, 0.6); | ||
} | ||
|
||
/* .vertical-label, | ||
.vertical-label:hover, | ||
.vertical-label:selected, | ||
.vertical-label:selected:focus, | ||
.vertical-label:hover:selected { | ||
} */ | ||
|
||
.label-vertical { | ||
|
||
} | ||
|
||
.label-vertical-val { | ||
color: @text_color, 1; | ||
font-size: 30px; | ||
font-weight: 200; | ||
/* padding: 0 6px; | ||
margin: 0 3px; */ | ||
border-width: 0; | ||
} | ||
|
||
.usage-label-container { | ||
border: 1px solid @SILVER_900; | ||
border-radius: 3px; | ||
background-color: alpha(@SILVER_900, 0.5); | ||
} | ||
|
||
.username-current { | ||
background-color: @SILVER_900; | ||
color: alpha(@text_color, 0.7); | ||
} | ||
|
||
.username-other { | ||
background-color: @BANANA_300; | ||
color: #381F00; | ||
} | ||
|
||
.username-root { | ||
background-color: @STRAWBERRY_300; | ||
color: @SILVER_100; | ||
} | ||
|
||
.state_badge, | ||
.state_badge:hover, | ||
.state_badge:selected, | ||
.state_badge:selected:focus, | ||
.state_badge:hover:selected { | ||
background-image: none; | ||
background-color: @BLUEBERRY_500; | ||
box-shadow: none; | ||
color: white; | ||
font-weight: 700; | ||
border-radius: 10px; | ||
padding: 0 6px; | ||
margin: 0 3px; | ||
border-width: 0; | ||
} | ||
|
||
.core_badge { | ||
background-color: @SILVER_900; | ||
border-radius: 8px; | ||
padding-right: 4px; | ||
padding-left:2px; | ||
font-size: 10px; | ||
color: @text_color; | ||
border: 1px solid @SILVER_700; | ||
} | ||
|
||
.core_badge-mild-warning { | ||
background-color: alpha(@BANANA_900, 0.7); | ||
color: @BANANA_300; | ||
border: 1px solid alpha(@BANANA_700, 0.7); | ||
} | ||
|
||
.core_badge-strong-warning { | ||
background-color: alpha(@ORANGE_900, 0.7); | ||
color: @ORANGE_300; | ||
border: 1px solid alpha(@ORANGE_700, 0.7); | ||
} | ||
|
||
.core_badge-critical-warning { | ||
background-color: @STRAWBERRY_900; | ||
color: @STRAWBERRY_100; | ||
border: 1px solid @STRAWBERRY_700; | ||
} | ||
|
||
.command_wrapper { | ||
background-color: #fdf6e3; | ||
border-radius: 3px; | ||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.20); | ||
padding: 5px; | ||
} | ||
|
||
.command text { | ||
background-color: #fdf6e3; | ||
} | ||
.command { | ||
font-family: monospace; | ||
} | ||
|
||
.small-text { | ||
color: @SILVER_500; | ||
font-weight:bold; | ||
font-size:9px; | ||
} | ||
|
||
.graph { | ||
border: 1px @SILVER_900 solid; | ||
border-radius: 6px | ||
|
||
} | ||
|
||
.open_files_list_box_wrapper { | ||
border: 1px @SILVER_900 solid; | ||
} | ||
|
||
.open_files_list_box { | ||
|
||
} | ||
.open_files_list_box_row { | ||
border-bottom: 1px @SILVER_900 solid; | ||
} | ||
|
||
.open_files_list_box_row label { | ||
font-family: monospace; | ||
/* background-color: @SILVER_300; */ | ||
padding: 6px 2px 2px; | ||
border-radius: 4px; | ||
} | ||
|
||
.open_files_list_box_row image { | ||
color: @SILVER_700; | ||
margin: 6px; | ||
} | ||
|
||
.bold { | ||
font-weight: bold; | ||
} | ||
|
||
.text-secondary { | ||
color: @SILVER_700; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.