Browse Source

Rename styleclass

Armin Schrenk 3 years ago
parent
commit
22b842e6c2

+ 1 - 1
src/main/resources/css/dark_theme.css

@@ -98,7 +98,7 @@
 	-fx-text-fill: TEXT_FILL_MUTED;
 }
 
-.label-large {
+.label-extra-large {
 	-fx-font-family: 'Open Sans SemiBold';
 	-fx-font-size: 1.5em;
 }

+ 1 - 1
src/main/resources/css/light_theme.css

@@ -98,7 +98,7 @@
 	-fx-text-fill: TEXT_FILL_MUTED;
 }
 
-.label-large {
+.label-extra-large {
 	-fx-font-family: 'Open Sans SemiBold';
 	-fx-font-size: 1.5em;
 }

+ 1 - 1
src/main/resources/fxml/error.fxml

@@ -30,7 +30,7 @@
 				<FontAwesome5IconView styleClass="glyph-icon-white" glyph="EXCLAMATION" glyphSize="24"/>
 			</StackPane>
 			<VBox spacing="6" HBox.hgrow="ALWAYS">
-				<FormattedLabel styleClass="label-large" format="%generic.error.title" arg1="${controller.errorCode}"/>
+				<FormattedLabel styleClass="label-extra-large" format="%generic.error.title" arg1="${controller.errorCode}"/>
 				<Label text="%generic.error.instruction" wrapText="true"/>
 				<Hyperlink styleClass="hyperlink-underline" text="%generic.error.hyperlink.lookup" onAction="#searchError" contentDisplay="LEFT">
 					<graphic>

+ 1 - 1
src/main/resources/fxml/health_check_details.fxml

@@ -9,7 +9,7 @@
 	  xmlns="http://javafx.com/javafx"
 	  fx:controller="org.cryptomator.ui.health.CheckDetailController"
 	  spacing="6">
-	<Label fx:id="detailHeader" styleClass="label-large" text="${controller.checkName}" contentDisplay="LEFT">
+	<Label fx:id="detailHeader" styleClass="label-extra-large" text="${controller.checkName}" contentDisplay="LEFT">
 		<graphic>
 			<HBox alignment="CENTER" minWidth="25" maxWidth="25">
 				<CheckStateIconView fx:id="checkStateIconView" check="${controller.check}" glyphSize="20"/>

+ 1 - 1
src/main/resources/fxml/health_start.fxml

@@ -33,7 +33,7 @@
 				<padding>
 					<Insets topRightBottomLeft="12"/>
 				</padding>
-				<Label text="%health.intro.header" styleClass="label-large"/>
+				<Label text="%health.intro.header" styleClass="label-extra-large"/>
 				<Region minHeight="15"/>
 				<VBox>
 					<Label text="%health.intro.text" wrapText="true"/>

+ 1 - 1
src/main/resources/fxml/migration_impossible.fxml

@@ -30,7 +30,7 @@
 			<FontAwesome5IconView styleClass="glyph-icon-white" glyph="TIMES" glyphSize="24"/>
 		</StackPane>
 		<VBox spacing="6">
-			<Label styleClass="label-large" text="%migration.impossible.heading"/>
+			<Label styleClass="label-extra-large" text="%migration.impossible.heading"/>
 			<Label text="%migration.impossible.reason" wrapText="true" HBox.hgrow="ALWAYS"/>
 			<TextFlow>
 				<Text text="%migration.impossible.moreInfo"/>

+ 1 - 1
src/main/resources/fxml/preferences_about.fxml

@@ -21,7 +21,7 @@
 				<Image url="@../img/logo.png"/>
 			</ImageView>
 			<VBox spacing="3" HBox.hgrow="ALWAYS" alignment="CENTER_LEFT">
-				<FormattedLabel styleClass="label-large" format="Cryptomator %s" arg1="${controller.applicationVersion}"/>
+				<FormattedLabel styleClass="label-extra-large" format="Cryptomator %s" arg1="${controller.applicationVersion}"/>
 				<Label text="© 2016 – 2022 Skymatic GmbH"/>
 			</VBox>
 		</HBox>

+ 1 - 1
src/main/resources/fxml/stats.fxml

@@ -29,7 +29,7 @@
 				<Arc styleClass="cache-arc-foreground" centerX="100" centerY="100" radiusX="100" radiusY="100" startAngle="225" length="${controller.cacheHitDegrees}"/>
 			</Group>
 			<VBox StackPane.alignment="CENTER" alignment="CENTER">
-				<FormattedLabel styleClass="label-large" format="\%1.0f %%" arg1="${controller.cacheHitPercentage}"/>
+				<FormattedLabel styleClass="label-extra-large" format="\%1.0f %%" arg1="${controller.cacheHitPercentage}"/>
 				<Label text="%stats.cacheHitRate"/>
 			</VBox>
 		</StackPane>

+ 1 - 1
src/main/resources/fxml/vault_detail.fxml

@@ -26,7 +26,7 @@
 			</StackPane>
 			<VBox spacing="4" HBox.hgrow="ALWAYS">
 				<HBox spacing="12">
-					<Label styleClass="label-large" text="${controller.vault.displayName}">
+					<Label styleClass="label-extra-large" text="${controller.vault.displayName}">
 						<tooltip>
 							<Tooltip text="${controller.vault.displayName}"/>
 						</tooltip>