-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merged main into master for 1.5 release
- Loading branch information
Showing
7 changed files
with
459 additions
and
20 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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#wizard_plugin_rgb_status ol li { | ||
width: 100%; | ||
border-bottom: 1px solid #ccc; | ||
display: block; | ||
padding: 5px; | ||
padding-bottom: 20px; | ||
} | ||
#wizard_plugin_rgb_status ol li.complete * { | ||
display: none; | ||
} | ||
#wizard_plugin_rgb_status ol li.complete h3 { | ||
display: initial; | ||
} | ||
#wizard_plugin_rgb_status ol li:before { | ||
float: left; | ||
margin-left: -30px; | ||
font-size: 25pt; | ||
color: #dc0c0c; | ||
margin-top: 20px; | ||
} | ||
#wizard_plugin_rgb_status ol li:first-of-type:before { | ||
content: "1"; | ||
} | ||
#wizard_plugin_rgb_status ol li:nth-of-type(2):before { | ||
content: "2"; | ||
} | ||
#wizard_plugin_rgb_status ol li:nth-of-type(3):before { | ||
content: "3"; | ||
} | ||
#wizard_plugin_rgb_status ol li:nth-of-type(4):before { | ||
content: "4"; | ||
} | ||
#wizard_plugin_rgb_status ol li.complete:before { | ||
content: "✓" !important; | ||
color: #47b347; | ||
margin-top: 10px; | ||
} | ||
#wizard_plugin_rgb_status .code { | ||
font-family: monospace; | ||
background: #ddd; | ||
padding: 1px 5px; | ||
} | ||
#wizard_plugin_rgb_status .helpText { | ||
color: #888; | ||
font-size: 9pt; | ||
line-height: 10pt; | ||
margin-top: -5px; | ||
margin-bottom: 15px; | ||
} | ||
#wizard_plugin_rgb_status .errors { | ||
color: #f33; | ||
font-weight: bold; | ||
} |
Oops, something went wrong.