-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#16 Add indicators showing the number of running/unstable/broken/unkn…
…own state builds in group. Indicators are shown incolumns on the right, the column for given indicator is only shown when the there is at least one indicator ot show. Add count of connectors in group to the name of the group.
- Loading branch information
1 parent
12e1ce9
commit db3b7e9
Showing
6 changed files
with
478 additions
and
56 deletions.
There are no files selected for viewing
92 changes: 46 additions & 46 deletions
92
src/Soloplan.WhatsON.GUI.Common/BuildServer/BuildInformationIconControl.xaml
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> | ||
<SolidColorBrush x:Key="Failure">#C92A3C</SolidColorBrush> | ||
<SolidColorBrush x:Key="Success">#42AB14</SolidColorBrush> | ||
<SolidColorBrush x:Key="Running">#008B8B</SolidColorBrush> | ||
<SolidColorBrush x:Key="Unknown">#78909C</SolidColorBrush> | ||
<SolidColorBrush x:Key="Unstable">#FFA500</SolidColorBrush> | ||
</ResourceDictionary> |
Oops, something went wrong.