Fix: Resolving Git Merge Conflicts #253
@@ -2,11 +2,7 @@
|
|||||||
|
|
||||||
<?import javafx.scene.control.*?>
|
<?import javafx.scene.control.*?>
|
||||||
<?import javafx.scene.layout.*?>
|
<?import javafx.scene.layout.*?>
|
||||||
<?import javafx.geometry.Insets?>
|
|
||||||
|
|
||||||
|
|
||||||
<?import javafx.scene.control.skin.SplitPaneSkin.Content?>
|
|
||||||
<?import com.sun.javafx.scene.control.ContextMenuContent.MenuBox?>
|
|
||||||
<VBox xmlns="http://javafx.com/javafx/21"
|
<VBox xmlns="http://javafx.com/javafx/21"
|
||||||
xmlns:fx="http://javafx.com/fxml/1"
|
xmlns:fx="http://javafx.com/fxml/1"
|
||||||
fx:id="chatBox"
|
fx:id="chatBox"
|
||||||
@@ -16,26 +12,20 @@
|
|||||||
spacing="10"
|
spacing="10"
|
||||||
maxWidth="Infinity">
|
maxWidth="Infinity">
|
||||||
|
|
||||||
<children>
|
<HBox spacing="10"
|
||||||
<HBox spacing="10"
|
fx:id="menuBox">
|
||||||
styleClass="">
|
|
||||||
<children>
|
|
||||||
<Label text="== CHAT ==" styleClass="chat-header" alignment="CENTER" maxWidth="Infinity"/>
|
|
||||||
<Region HBox.hgrow="ALWAYS" />
|
|
||||||
<MenuButton fx:id="addWhisperChatButton" styleClass="yellow-button" text="WHISPER CHAT" alignment="CENTER_RIGHT">
|
|
||||||
</MenuButton>
|
|
||||||
</children>
|
|
||||||
|
|
||||||
</HBox>
|
<Label text="== CHAT ==" styleClass="chat-header" alignment="CENTER" maxWidth="Infinity"/>
|
||||||
|
<Region HBox.hgrow="ALWAYS"/>
|
||||||
|
<MenuButton fx:id="addWhisperChatButton" styleClass="yellow-button" text="WHISPER CHAT"
|
||||||
|
alignment="CENTER_RIGHT">
|
||||||
|
</MenuButton>
|
||||||
|
</HBox>
|
||||||
|
|
||||||
<TabPane fx:id="ChatTabPane"
|
<TabPane fx:id="chatTabPane"
|
||||||
VBox.vgrow="ALWAYS">
|
VBox.vgrow="ALWAYS"
|
||||||
|
styleClass="tab-header-area">
|
||||||
</TabPane>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</children>
|
|
||||||
|
|
||||||
|
</TabPane>
|
||||||
|
|
||||||
</VBox>
|
</VBox>
|
||||||
@@ -5,7 +5,7 @@
|
|||||||
-fx-border-color: #5c3d10 #3d260a #3d260a #5c3d10;
|
-fx-border-color: #5c3d10 #3d260a #3d260a #5c3d10;
|
||||||
-fx-border-width: 12;
|
-fx-border-width: 12;
|
||||||
-fx-padding: 20;
|
-fx-padding: 20;
|
||||||
-fx-effect: dropshadow(one-pass-box, rgba(0,0,0,1), 0, 0, 15, 15);
|
/*-fx-effect: dropshadow(one-pass-box, rgba(0,0,0,1), 0, 0, 15, 15);*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-header {
|
.chat-header {
|
||||||
@@ -154,11 +154,53 @@
|
|||||||
-fx-pref-height: 10;
|
-fx-pref-height: 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-pane .tab-header-area {
|
.tab-pane .tab-header-area .tab-header-background {
|
||||||
-fx-background-color: #0d763b;
|
-fx-opacity: 0;
|
||||||
|
-fx-background-color: #0d9e3b;
|
||||||
|
-fx-background-radius: 18;
|
||||||
|
-fx-border-radius: 10;
|
||||||
|
-fx-border-color: #5c3d10 #3d260a #3d260a #5c3d10;
|
||||||
|
-fx-border-width: 5;
|
||||||
|
-fx-padding: 10;
|
||||||
|
-fx-effect: dropshadow(one-pass-box, rgba(0,0,0,1), 0, 0, 15, 15);
|
||||||
|
-fx-max-height: 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tab-pane .tab {
|
||||||
|
-fx-background-color: #0d9e3b;
|
||||||
|
-fx-background-radius: 18;
|
||||||
|
-fx-border-radius: 10;
|
||||||
|
-fx-border-color: #5c3d10 #3d260a #3d260a #5c3d10;
|
||||||
|
-fx-border-width: 5;
|
||||||
|
-fx-padding: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-pane .tab:selected {
|
||||||
|
-fx-background-color: #0d763b;
|
||||||
|
-fx-background-radius: 18;
|
||||||
|
-fx-border-radius: 10;
|
||||||
|
-fx-border-color: #5c3d10 #3d260a #3d260a #5c3d10;
|
||||||
|
-fx-border-width: 5;
|
||||||
|
-fx-padding: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-pane .tab .tab-close-button {
|
||||||
|
-fx-text-fill: #0d9e3b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-pane .tab-header-area .headers-region {
|
||||||
|
-fx-background-color: #0d9e3b;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.tab .tab-label {
|
.tab .tab-label {
|
||||||
-fx-font-family: "Courier New";
|
-fx-alignment: CENTER;
|
||||||
|
-fx-text-fill: #ffffff;
|
||||||
|
-fx-font-size: 12px;
|
||||||
-fx-font-weight: bold;
|
-fx-font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tab:selected .tab-label {
|
||||||
|
-fx-alignment: CENTER;
|
||||||
|
-fx-text-fill: #ffffff;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user