Skip to content

Commit

Permalink
Restore styles for steps in firstboot
Browse files Browse the repository at this point in the history
  • Loading branch information
joseivanlopez committed Mar 5, 2021
1 parent cf577d1 commit 58773f9
Showing 1 changed file with 59 additions and 7 deletions.
66 changes: 59 additions & 7 deletions theme/SLE/wizard/installation.qss
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ QTreeView, QTreeWidget {
border-radius: 2px;
}

QTreeView::item:focus {
color: #FFFFFF;
border:none;
QTreeView::item:focus {
color: #FFFFFF;
border:none;
outline: none;
background-color: #404147;
}
Expand Down Expand Up @@ -185,8 +185,8 @@ QToolButton#qt_calendar_nextmonth {
qproperty-icon: url(inst_arr_right.png);
}

QCalendarWidget QAbstractItemView:enabled {
selection-background-color: #FFFFFF;
QCalendarWidget QAbstractItemView:enabled {
selection-background-color: #FFFFFF;
selection-color: #000000;
font-weight: bold;
}
Expand Down Expand Up @@ -332,7 +332,7 @@ QTabBar::tear {
border-radius: 1px;
}

QTabBar QToolButton {
QTabBar QToolButton {
border: 1px solid #000000;
}

Expand Down Expand Up @@ -441,7 +441,7 @@ QPushButton:default {
border: 1px solid #30BA78;
background-color: #30BA78;
color: #FFFFFF;
}
}
QPushButton:disabled,
QPushButton:default:disabled {
color: rgba(255,255,255,60);
Expand Down Expand Up @@ -594,6 +594,11 @@ BusyBar {
QToolTip {
background-color: #ffECB5;
}

QSplitter {
background-color: #2B2E38;
}

QSplitter::handle {
image: url(separator.png);
height: 10px;
Expand Down Expand Up @@ -622,3 +627,50 @@ QComboBoxPrivateScroller
background-color: #2B2E38;
color: #FFFFFF;
}

#steps
{
padding: 12px 1px 80px 12px;
background: url(logo.svg) no-repeat bottom, #1f222b;
}

.steps_heading {
font-size: 16pt;
font-family: Poppins, Sans-serif;
background-color: #1f222b;
color: #fff;
padding: 0px 0px 12px 15px
}

.todo-step-name {
background-color: #1f222b;
padding: 6px 12px;
color: #fff;
font-size: 14px;
}

.done-step-name {
background-color: #1f222b;
padding: 6px 12px;
color: #fff;
font-size: 14px;
}

.current-step-name {
background-color: #30BA78;
padding: 6px 12px;
color: #fff;
font-size: 14px;
}

.todo-step-status {
background-color: #1f222b;
}

.done-step-status {
background-color: #1f222b;
}

.current-step-status {
background-color: #1f222b;
}

0 comments on commit 58773f9

Please sign in to comment.