Use dark theme from ALT Workstation 8.0
This commit is contained in:
parent
4d17493afe
commit
7fe45605cc
components
bootloader
bootsplash
browser-qt/design
grub2
indexhtml
BIN
components/bootloader/bootlogo
Normal file
BIN
components/bootloader/bootlogo
Normal file
Binary file not shown.
@ -39,35 +39,35 @@ mainmenu.bar.minwidth=294
|
||||
; main menu selection bar transparency (0..255)
|
||||
mainmenu.bar.transparency=0
|
||||
; main menu colors
|
||||
mainmenu.bar.color=0x0c2c6c
|
||||
mainmenu.normal.fg=0x2b328d
|
||||
mainmenu.bar.color=0x001056
|
||||
mainmenu.normal.fg=0xb6c1cd
|
||||
mainmenu.selected.fg=0xffffff
|
||||
; boot option colors
|
||||
bootopt.label.fg=0x001056
|
||||
bootopt.text.fg=0x2b328d
|
||||
bootopt.label.fg=0xffffff
|
||||
bootopt.text.fg=0xffffff
|
||||
; progress bar color
|
||||
progress.bar.color=0x@MIDDLE_COLOR_HEX@
|
||||
; menu colors
|
||||
menu.normal.bg=0xe9e8e7
|
||||
menu.normal.fg=0x000000
|
||||
menu.selected.bg=0x306ac4
|
||||
menu.selected.fg=0xffffff
|
||||
menu.selected.bg=0xc9c8c8
|
||||
menu.selected.fg=0x000000
|
||||
; window colors
|
||||
window.bg=0xffffff
|
||||
window.bg=0xd8deed
|
||||
window.fg=0x000000
|
||||
window.title.bg=0x@TITLE_COLOR@
|
||||
window.title.fg=0xffffff
|
||||
window.title.fg=0x@DARK_LABELS_HEX@
|
||||
window.title.error.bg=0xc00000
|
||||
; help system colors
|
||||
help.link.fg=0x185da0
|
||||
help.link.selected.fg=0xffffff
|
||||
help.link.selected.bg=0x185da
|
||||
help.highlight.fg=0x@MIDDLE_COLOR_HEX@
|
||||
help.highlight.fg=0x@DARK_COLOR_HEX@
|
||||
; panel colors
|
||||
panel.fg=0x000000
|
||||
panel.title.fg=0x001056
|
||||
panel.normal.fg=0x2b328d
|
||||
panel.f-key.fg=0x2b328d
|
||||
panel.title.fg=0xffffff
|
||||
panel.normal.fg=0xf1f1ff
|
||||
panel.f-key.fg=0xf8e97c
|
||||
; default keymap (e.g. de_DE, czech)
|
||||
keymap=
|
||||
|
||||
|
@ -120,7 +120,7 @@ progress_box.image = imgscale( progress_box.raw, scale_factor );
|
||||
progress_box.sprite = Sprite(progress_box.image);
|
||||
|
||||
progress_box.x = Window.GetX() + Window.GetWidth() / 2 - progress_box.image.GetWidth() / 2;
|
||||
progress_box.y = Window.GetY() + Window.GetHeight() / 2 - progress_box.image.GetHeight() / 2;
|
||||
progress_box.y = Window.GetY() + Window.GetHeight() / 2 - progress_box.image.GetHeight() / 2 + 50;
|
||||
progress_box.sprite.SetPosition(progress_box.x, progress_box.y, 0);
|
||||
|
||||
progress_bar.status.raw = Image("segment_status.png");
|
||||
@ -130,7 +130,7 @@ progress_bar.runner.SetImage ( imgscale(progress_bar.status.raw, scale_factor));
|
||||
|
||||
progress_bar.x = Window.GetX() + Window.GetWidth() / 2 - progress_box.image.GetWidth() / 2;
|
||||
progress_bar.y = Window.GetY() + Window.GetHeight() / 2 - progress_box.image.GetHeight() / 2 +
|
||||
(progress_box.image.GetHeight() - progress_box.image.GetHeight()) / 2;
|
||||
(progress_box.image.GetHeight() - progress_box.image.GetHeight()) / 2 + 50;
|
||||
|
||||
#Total steps
|
||||
steps=33;
|
||||
|
@ -1,16 +1,11 @@
|
||||
/* Customize any plain widget that is a child of a QMainWindow. */
|
||||
|
||||
/* Main area */
|
||||
.AWizardFace {
|
||||
border-style: none;
|
||||
background-image: url(:/design/bg.png);
|
||||
background-color: rgb(167,228,255);
|
||||
background-position: top left;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.AWizardFace #wizardface_title_text {
|
||||
color: rgb(255,255,255);
|
||||
font: bold;
|
||||
font-size: 24px;
|
||||
background-repeat: no-repeat
|
||||
}
|
||||
|
||||
.ACenterFace {
|
||||
@ -30,39 +25,60 @@ AWizardFace QLineEdit {
|
||||
border: 2px inset gray;
|
||||
}
|
||||
|
||||
/* Customize tooltips. */
|
||||
QToolTip {
|
||||
background-color: rgb(255,255,224);
|
||||
border-color: black;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
padding: 2px;
|
||||
border-radius: 3px;
|
||||
opacity: 200;
|
||||
/* White color for labels: 100% for title text and 80% for other labels */
|
||||
AWizardFace QLabel {
|
||||
color: rgba(255, 255, 255, 80%);
|
||||
}
|
||||
|
||||
QProgressBar {
|
||||
background: white;
|
||||
border: 1px solid #B8B2AD;
|
||||
QCheckBox, QRadioButton {
|
||||
color: black;
|
||||
}
|
||||
|
||||
QProgressBar::chunk {
|
||||
background: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #648fb6,
|
||||
stop: 1 #6f9fca) url(:/design/progress-cleanlooks.png);
|
||||
border: 1px solid #46647f;
|
||||
AWizardFace QCheckBox:checked, AWizardFace QCheckBox:unchecked, AWizardFace QCheckBox:indeterminate {
|
||||
color: rgba(255, 255, 255, 80%);
|
||||
}
|
||||
|
||||
AWizardFace QRadioButton:checked, AWizardFace QRadioButton:unchecked, AWizardFace QRadioButton:indeterminate {
|
||||
color: rgba(255, 255, 255, 80%);
|
||||
}
|
||||
|
||||
/* Sections */
|
||||
AWizardFace AGroupBox {
|
||||
border: 1px solid rgba(255, 255, 255, 0%);
|
||||
border: 1px solid rgba(255, 255, 255, 0%);
|
||||
}
|
||||
|
||||
AWizardFace AGroupBox::title {
|
||||
color: #F8E97C;
|
||||
font: bold;
|
||||
}
|
||||
|
||||
QCheckBox:hover, QRadioButton:hover {
|
||||
background: none;
|
||||
background: none;
|
||||
}
|
||||
|
||||
/* Fix side effect on transparent background */
|
||||
QCheckBox:indicator:hover, QRadioButton:indicator:hover {
|
||||
margin-left: 1px;
|
||||
margin-left: 1px;
|
||||
}
|
||||
|
||||
/* Step title */
|
||||
QLabel#wizardface_title_text {
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* Popup dialogs and message boxes with warnings and errors */
|
||||
MessageBox {
|
||||
background-color: rgba(235, 235, 235, 100%);
|
||||
border: 5px solid #d7d7d7;
|
||||
}
|
||||
|
||||
AGridBox {
|
||||
background-color: transparent;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
/* Installation steps list
|
||||
AWizardFaceStepList {
|
||||
background-color: rgba(235, 235, 235, 10%);
|
||||
}
|
||||
*/
|
||||
|
Binary file not shown.
Before (image error) Size: 2.2 KiB After (image error) Size: 20 KiB |
@ -37,7 +37,7 @@ terminal-font: "Misc Fixed Regular 13"
|
||||
text = "Для запуска системы выберите пункт меню и нажмите Enter."
|
||||
align = "center"
|
||||
#font = "Droid Sans Bold 14"
|
||||
color = "#0c2c6c"
|
||||
color = "#F8E97C"
|
||||
}
|
||||
|
||||
+ label {
|
||||
@ -48,7 +48,7 @@ terminal-font: "Misc Fixed Regular 13"
|
||||
text = "Для редактирования меню нажмите E. Для выхода - Esc."
|
||||
align = "center"
|
||||
#font = "Droid Sans Bold 14"
|
||||
color = "#0c2c6c"
|
||||
color = "#cccccc"
|
||||
}
|
||||
|
||||
#menu
|
||||
@ -69,7 +69,7 @@ terminal-font: "Misc Fixed Regular 13"
|
||||
scrollbar_width = 20
|
||||
scrollbar_thumb = "scrollbar_slider_*.png"
|
||||
scrollbar_frame = "scrollbar_border_*.png"
|
||||
item_color = "#000080"
|
||||
item_color = "#b5bdd0"
|
||||
selected_item_color = "#ffffff"
|
||||
}
|
||||
|
||||
|
@ -78,7 +78,7 @@
|
||||
|
||||
<!-- Social networks -->
|
||||
<tr><td colspan="3" id="social-pane">
|
||||
<div id="social">We will be glade to meet you on the following social networks:</div>
|
||||
<div id="social">We will be glad to meet you on the following social networks:</div>
|
||||
<div id="social-icons">
|
||||
<a href="https://twitter.com/#!/altlinuxru" class="image"><img src="images/twitter.png" alt="Twitter" class="banner"></a>
|
||||
<a href="https://www.facebook.com/group.php?gid=136328550579" class="image"><img src="images/facebook.png" alt="Facebook" class="banner"></a>
|
||||
|
Loading…
Reference in New Issue
Block a user