Co-authored-by: CyB3RC0nN0R <kske@outlook.de> Co-authored-by: delvh <dev.lh@web.de>
86 lines
1.7 KiB
CSS
86 lines
1.7 KiB
CSS
.root {
|
|
-fx-background-color: #E6E6E6;
|
|
}
|
|
|
|
.button {
|
|
-fx-background-color: #B37D7D;
|
|
}
|
|
|
|
.button:pressed {
|
|
-fx-background-color: #808080;
|
|
}
|
|
|
|
.button:disabled {
|
|
-fx-background-color: lightgray;
|
|
}
|
|
|
|
#message-list, .text-field, .password-field, .tooltip, .pane, .pane .content, .vbox, .titled-pane > .title, .titled-pane > *.content, .context-menu, .menu-item {
|
|
-fx-background-color: #E3E3E3;
|
|
}
|
|
|
|
.list-cell:selected, .list-cell:selected > *, .menu-item:hover {
|
|
-fx-background-color: #805959;
|
|
}
|
|
|
|
.received-message {
|
|
-fx-background-color: lightgray;
|
|
}
|
|
|
|
.own-message {
|
|
-fx-background-color: #8FA88F;
|
|
}
|
|
|
|
.alert.information.dialog-pane, .alert.warning.dialog-pane, .alert.error.dialog-pane {
|
|
-fx-background-color: black;
|
|
}
|
|
|
|
#login-input-field {
|
|
-fx-border-color: black;
|
|
}
|
|
|
|
#login-background {
|
|
-fx-background-color: white;
|
|
}
|
|
|
|
#chat-list, #top-bar, #search-panel, #note-background {
|
|
-fx-background-color: white;
|
|
}
|
|
|
|
#text-enter-container {
|
|
-fx-background-color: #F2F2F2;
|
|
}
|
|
|
|
#contact-search-enter-container {
|
|
-fx-background-color: #CCCCCC;
|
|
}
|
|
|
|
#underline {
|
|
-fx-border: solid;
|
|
-fx-border-width: 0.0 0.0 1.0 0.0;
|
|
-fx-border-color: #CCCCCC;
|
|
}
|
|
|
|
.group-member-names {
|
|
-fx-text-fill: #805959;
|
|
-fx-font-weight: bold;
|
|
}
|
|
|
|
.scroll-bar:vertical, .scroll-bar:vertical .track, .scroll-bar:vertical .increment-button , .scroll-bar:vertical .decrement-button {
|
|
-fx-background-color: transparent;
|
|
}
|
|
|
|
.scroll-bar:vertical .increment-arrow, .scroll-bar:vertical .decrement-arrow {
|
|
-fx-background-color: transparent;
|
|
}
|
|
|
|
.scroll-bar:vertical .thumb {
|
|
-fx-background-color: #707070;
|
|
-fx-background-insets : 4.0, 0.0, 0.0;
|
|
-fx-background-radius : 2.0em;
|
|
}
|
|
|
|
#proceed-button {
|
|
-fx-text-fill: white;
|
|
-fx-background-color: transparent;
|
|
}
|