Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
PlayWallDesktop
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PlayWall
PlayWallDesktop
Commits
e3306502
Commit
e3306502
authored
4 years ago
by
Tobias Ullerich
Browse files
Options
Downloads
Patches
Plain Diff
Improve list styling, style list in zone settings
parent
3528a16b
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
PlayWall/src/main/sass/components/list.scss
+1
-1
1 addition, 1 deletion
PlayWall/src/main/sass/components/list.scss
PlayWallPlugins/PlayWallPluginContentPlayer/src/main/resources/view/ZoneSettings.fxml
+27
-27
27 additions, 27 deletions
...inContentPlayer/src/main/resources/view/ZoneSettings.fxml
with
28 additions
and
28 deletions
PlayWall/src/main/sass/components/list.scss
+
1
−
1
View file @
e3306502
...
...
@@ -15,7 +15,7 @@
-fx-border-width
:
0px
0px
1px
0px
;
}
&
:odd
{
&
:odd
:filled
{
-fx-background-color
:
derive
(
-
fx-hover-base
,
-10%
);
}
}
...
...
This diff is collapsed.
Click to expand it.
PlayWallPlugins/PlayWallPluginContentPlayer/src/main/resources/view/ZoneSettings.fxml
+
27
−
27
View file @
e3306502
...
...
@@ -4,13 +4,23 @@
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane
prefHeight=
"400.0"
prefWidth=
"600.0"
xmlns=
"http://javafx.com/javafx/8"
xmlns:fx=
"http://javafx.com/fxml/1"
>
<AnchorPane
prefHeight=
"400.0"
prefWidth=
"600.0"
xmlns=
"http://javafx.com/javafx/8"
xmlns:fx=
"http://javafx.com/fxml/1"
>
<children>
<ListView
prefWidth=
"200.0"
AnchorPane.bottomAnchor=
"30.0"
AnchorPane.leftAnchor=
"0.0"
AnchorPane.topAnchor=
"0.0"
fx:id=
"listView"
/>
<VBox
layoutX=
"200.0"
prefHeight=
"400.0"
prefWidth=
"401.0"
spacing=
"14.0"
AnchorPane.bottomAnchor=
"0.0"
AnchorPane.leftAnchor=
"200.0"
AnchorPane.rightAnchor=
"0.0"
AnchorPane.topAnchor=
"0.0"
>
<VBox
layoutY=
"345.0"
AnchorPane.bottomAnchor=
"0.0"
AnchorPane.leftAnchor=
"0.0"
AnchorPane.topAnchor=
"0.0"
>
<children>
<ListView
fx:id=
"listView"
prefWidth=
"250.0"
VBox.vgrow=
"ALWAYS"
/>
<HBox
prefHeight=
"30.0"
prefWidth=
"200.0"
spacing=
"14.0"
>
<children>
<Button
fx:id=
"addButton"
maxHeight=
"1.7976931348623157E308"
maxWidth=
"1.7976931348623157E308"
mnemonicParsing=
"false"
onAction=
"#onAddHandle"
text=
"%plugin.content.player.settings.add"
HBox.hgrow=
"ALWAYS"
/>
<Button
fx:id=
"removeButton"
maxHeight=
"1.7976931348623157E308"
maxWidth=
"1.7976931348623157E308"
mnemonicParsing=
"false"
onAction=
"#onRemoveHandle"
text=
"%plugin.content.player.settings.remove"
HBox.hgrow=
"ALWAYS"
/>
</children>
<padding>
<Insets
bottom=
"14.0"
left=
"14.0"
right=
"14.0"
top=
"14.0"
/>
</padding>
</HBox>
</children>
</VBox>
<VBox
layoutX=
"200.0"
prefHeight=
"400.0"
prefWidth=
"401.0"
spacing=
"14.0"
AnchorPane.bottomAnchor=
"0.0"
AnchorPane.leftAnchor=
"250.0"
AnchorPane.rightAnchor=
"0.0"
AnchorPane.topAnchor=
"0.0"
>
<children>
<HBox
alignment=
"CENTER_LEFT"
spacing=
"14.0"
>
<children>
...
...
@@ -38,8 +48,7 @@
</HBox>
<HBox
alignment=
"CENTER_LEFT"
spacing=
"14.0"
>
<children>
<Label
alignment=
"CENTER_RIGHT"
prefWidth=
"150.0"
text=
"%plugin.content.player.settings.height"
/>
<Label
alignment=
"CENTER_RIGHT"
prefWidth=
"150.0"
text=
"%plugin.content.player.settings.height"
/>
<NumberTextField
fx:id=
"heightTextField"
/>
</children>
</HBox>
...
...
@@ -48,14 +57,5 @@
<Insets
bottom=
"14.0"
left=
"14.0"
right=
"14.0"
top=
"14.0"
/>
</padding>
</VBox>
<HBox
layoutY=
"336.0"
prefHeight=
"30.0"
prefWidth=
"200.0"
AnchorPane.bottomAnchor=
"0.0"
AnchorPane.leftAnchor=
"0.0"
>
<children>
<Button
maxHeight=
"1.7976931348623157E308"
maxWidth=
"1.7976931348623157E308"
mnemonicParsing=
"false"
text=
"%plugin.content.player.settings.add"
HBox.hgrow=
"ALWAYS"
fx:id=
"addButton"
onAction=
"#onAddHandle"
/>
<Button
maxHeight=
"1.7976931348623157E308"
maxWidth=
"1.7976931348623157E308"
mnemonicParsing=
"false"
text=
"%plugin.content.player.settings.remove"
HBox.hgrow=
"ALWAYS"
fx:id=
"removeButton"
onAction=
"#onRemoveHandle"
/>
</children>
</HBox>
</children>
</AnchorPane>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment