mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-21 05:39:11 -04:00
Moved background image to light skin
*Moved backgrund image from login & profile creation page to light skin
This commit is contained in:
parent
5361bed037
commit
c05f6f5e52
3 changed files with 105 additions and 83 deletions
|
@ -346,7 +346,7 @@ The current identities/locations will not be affected.</string>
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
p, li { white-space: pre-wrap; }
|
p, li { white-space: pre-wrap; }
|
||||||
</style></head><body style=" font-family:'Sans'; font-size:13pt; font-weight:400; font-style:normal;">
|
</style></head><body style=" font-family:'Sans'; font-size:13pt; font-weight:400; font-style:normal;">
|
||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="Create new Profile..."><span style=" font-family:'MS Shell Dlg 2'; font-size:14pt; text-decoration: underline; color:#0000ff;">New Profile/Node</span></a></p></body></html></string>
|
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="Create new Profile..."><span style=" font-family:'MS Shell Dlg 2'; font-size:14pt; text-decoration: underline; color:#366fe0;">New Profile/Node</span></a></p></body></html></string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|
|
@ -2712,3 +2712,83 @@ PhotoItem QFrame#photoFrame {
|
||||||
PhotoItem QWidget:hover {
|
PhotoItem QWidget:hover {
|
||||||
background-color: #7ecbfb;
|
background-color: #7ecbfb;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* GenCertDialog
|
||||||
|
Change colors here because GUI is not started yet so no user StyleSheet loads */
|
||||||
|
|
||||||
|
GenCertDialog QFrame#profileframe{
|
||||||
|
border-image: url(:/images/logo/background.png) 0 0 0 0 stretch stretch;
|
||||||
|
border-width: 0px;
|
||||||
|
}
|
||||||
|
GenCertDialog QFrame#profileframe QCheckBox,
|
||||||
|
GenCertDialog QFrame#profileframe QLabel {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
GenCertDialog QLabel#info_Label:enabled {
|
||||||
|
color: black;
|
||||||
|
border: 1px solid #DCDC41;
|
||||||
|
border-radius: 6px;
|
||||||
|
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #FFFFD7, stop:1 #FFFFB2);
|
||||||
|
}
|
||||||
|
|
||||||
|
GenCertDialog QGroupBox#groupBox,
|
||||||
|
GenCertDialog QGroupBox#profile_groupBox {
|
||||||
|
background: rgba(0,0,0,10%);
|
||||||
|
}
|
||||||
|
GenCertDialog QGroupBox#profile_groupBox QComboBox,
|
||||||
|
GenCertDialog QGroupBox#profile_groupBox QSpinBox,
|
||||||
|
GenCertDialog QGroupBox#profile_groupBox QLineEdit,
|
||||||
|
GenCertDialog QComboBox#genPGPuser {
|
||||||
|
border: 2px solid #0099cc;
|
||||||
|
border-radius: 6px;
|
||||||
|
background: white;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
GenCertDialog QPushButton#genButton {
|
||||||
|
border-image: url(:/images/btn_blue.png) 4;
|
||||||
|
border-width: 4;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
GenCertDialog QPushButton#genButton:hover {
|
||||||
|
border-image: url(:/images/btn_blue_hover.png) 4;
|
||||||
|
}
|
||||||
|
GenCertDialog QPushButton#genButton:disabled {
|
||||||
|
border-image: url(:/images/btn_27.png) 4;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* StartDialog
|
||||||
|
To get the same style for all user and not use last connected one. */
|
||||||
|
|
||||||
|
StartDialog QFrame#loginframe{
|
||||||
|
border-image: url(:/images/logo/background_lessblue.png) 0 0 0 0 stretch stretch;
|
||||||
|
border-width: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
StartDialog QFrame#loginframe QCheckBox,
|
||||||
|
StartDialog QFrame#loginframe QLabel {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
StartDialog QGroupBox#profilGBox {
|
||||||
|
background: rgba(0,0,0,10%);
|
||||||
|
border-radius: 3px;
|
||||||
|
border-width: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
StartDialog QGroupBox#profilGBox * {
|
||||||
|
background-color: white;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
StartDialog QPushButton#loadButton {
|
||||||
|
background: transparent;
|
||||||
|
border-image: url(:/images/btn_blue.png) 4;
|
||||||
|
border-width: 4;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
StartDialog QPushButton#loadButton:hover {
|
||||||
|
background: transparent;
|
||||||
|
border-image: url(:/images/btn_blue_hover.png) 4;
|
||||||
|
}
|
||||||
|
|
|
@ -141,88 +141,6 @@ QLabel#newLabel:enabled {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* StartDialog
|
|
||||||
To get the same style for all user and not use last connected one. */
|
|
||||||
|
|
||||||
StartDialog QFrame#loginframe{
|
|
||||||
border-image: url(:/images/logo/background_lessblue.png) 0 0 0 0 stretch stretch;
|
|
||||||
border-width: 0px;
|
|
||||||
}
|
|
||||||
StartDialog QFrame#loginframe QCheckBox,
|
|
||||||
StartDialog QFrame#loginframe QLabel {
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
StartDialog QGroupBox#profilGBox {
|
|
||||||
background: rgba(0,0,0,10%);
|
|
||||||
border-radius: 3px;
|
|
||||||
border-width: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
StartDialog QGroupBox#profilGBox * {
|
|
||||||
background-color: white;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
StartDialog QPushButton#loadButton {
|
|
||||||
background: transparent;
|
|
||||||
border-image: url(:/images/btn_blue.png) 4;
|
|
||||||
border-width: 4;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
StartDialog QPushButton#loadButton:hover {
|
|
||||||
background: transparent;
|
|
||||||
border-image: url(:/images/btn_blue_hover.png) 4;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* GenCertDialog
|
|
||||||
Change colors here because GUI is not started yet so no user StyleSheet loads */
|
|
||||||
|
|
||||||
GenCertDialog QFrame#profileframe{
|
|
||||||
border-image: url(:/images/logo/background.png) 0 0 0 0 stretch stretch;
|
|
||||||
border-width: 0px;
|
|
||||||
}
|
|
||||||
GenCertDialog QFrame#profileframe QCheckBox,
|
|
||||||
GenCertDialog QFrame#profileframe QLabel {
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
GenCertDialog QLabel#info_Label:enabled {
|
|
||||||
color: black;
|
|
||||||
border: 1px solid #DCDC41;
|
|
||||||
border-radius: 6px;
|
|
||||||
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #FFFFD7, stop:1 #FFFFB2);
|
|
||||||
}
|
|
||||||
|
|
||||||
GenCertDialog QGroupBox#groupBox,
|
|
||||||
GenCertDialog QGroupBox#profile_groupBox {
|
|
||||||
background: rgba(0,0,0,10%);
|
|
||||||
}
|
|
||||||
GenCertDialog QGroupBox#profile_groupBox QComboBox,
|
|
||||||
GenCertDialog QGroupBox#profile_groupBox QSpinBox,
|
|
||||||
GenCertDialog QGroupBox#profile_groupBox QLineEdit,
|
|
||||||
GenCertDialog QComboBox#genPGPuser {
|
|
||||||
border: 2px solid #0099cc;
|
|
||||||
border-radius: 6px;
|
|
||||||
background: white;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
GenCertDialog QPushButton#genButton {
|
|
||||||
border-image: url(:/images/btn_blue.png) 4;
|
|
||||||
border-width: 4;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
GenCertDialog QPushButton#genButton:hover {
|
|
||||||
border-image: url(:/images/btn_blue_hover.png) 4;
|
|
||||||
}
|
|
||||||
GenCertDialog QPushButton#genButton:disabled {
|
|
||||||
border-image: url(:/images/btn_27.png) 4;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* AvatarWidget */
|
/* AvatarWidget */
|
||||||
|
|
||||||
AvatarWidget{border-width: 10px;}
|
AvatarWidget{border-width: 10px;}
|
||||||
|
@ -418,3 +336,27 @@ OpModeStatus[opMode="Minimal"] {
|
||||||
[WrongValue="true"] {
|
[WrongValue="true"] {
|
||||||
background-color: #FF8080;
|
background-color: #FF8080;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GenCertDialog QPushButton#genButton {
|
||||||
|
border-image: url(:/images/btn_blue.png) 4;
|
||||||
|
border-width: 4;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
GenCertDialog QPushButton#genButton:hover {
|
||||||
|
border-image: url(:/images/btn_blue_hover.png) 4;
|
||||||
|
}
|
||||||
|
GenCertDialog QPushButton#genButton:disabled {
|
||||||
|
border-image: url(:/images/btn_27.png) 4;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
StartDialog QPushButton#loadButton {
|
||||||
|
background: transparent;
|
||||||
|
border-image: url(:/images/btn_blue.png) 4;
|
||||||
|
border-width: 4;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
StartDialog QPushButton#loadButton:hover {
|
||||||
|
background: transparent;
|
||||||
|
border-image: url(:/images/btn_blue_hover.png) 4;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue