Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceliuice committed Feb 4, 2022
1 parent 7c89f72 commit c45d730
Show file tree
Hide file tree
Showing 17 changed files with 51 additions and 7 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
*-temp.scss
release/Fluent-green.tar.xz
release/Fluent-grey.tar.xz
release/Fluent-orange.tar.xz
release/Fluent-pink.tar.xz
release/Fluent-purple.tar.xz
release/Fluent-red.tar.xz
release/Fluent-teal.tar.xz
release/Fluent-yellow.tar.xz
release/Fluent.tar.xz
Binary file removed release/Fluent-green.tar.xz
Binary file not shown.
Binary file removed release/Fluent-grey.tar.xz
Binary file not shown.
Binary file removed release/Fluent-orange.tar.xz
Binary file not shown.
Binary file removed release/Fluent-pink.tar.xz
Binary file not shown.
Binary file removed release/Fluent-purple.tar.xz
Binary file not shown.
Binary file removed release/Fluent-red.tar.xz
Binary file not shown.
Binary file removed release/Fluent-teal.tar.xz
Binary file not shown.
Binary file removed release/Fluent-yellow.tar.xz
Binary file not shown.
Binary file removed release/Fluent.tar.xz
Binary file not shown.
7 changes: 6 additions & 1 deletion src/_sass/gtk/_common-3.20.scss
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,19 @@ flowbox {
padding: $container-padding;
border-radius: $corner-radius;

label.version-label { background-clip: border-box; }

&:focus {
background-image: url("assets/selected-line.png"), url("assets/[email protected]");
background-position: ($container-padding - 2px) center;
background-repeat: no-repeat;
background-size: 3px 32px;
outline: none;
}

&:selected { @extend %selected_items_color; }
&:selected {
@extend %selected_items_color;
}
}
}

Expand Down
7 changes: 6 additions & 1 deletion src/gtk/3.0/gtk-compact.css
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,16 @@ flowbox flowboxchild {
border-radius: 2px;
}

flowbox flowboxchild label.version-label {
background-clip: border-box;
}

flowbox flowboxchild:focus {
background-image: url("assets/selected-line.png"), url("assets/[email protected]");
background-image: url("assets/selected-line.png"), url("assets/[email protected]"), image(rgba(0, 0, 0, 0.04));
background-position: 2px center;
background-repeat: no-repeat;
background-size: 3px 32px;
outline: none;
}

.content-view .tile:selected {
Expand Down
7 changes: 6 additions & 1 deletion src/gtk/3.0/gtk-dark-compact.css
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,16 @@ flowbox flowboxchild {
border-radius: 2px;
}

flowbox flowboxchild label.version-label {
background-clip: border-box;
}

flowbox flowboxchild:focus {
background-image: url("assets/selected-line.png"), url("assets/[email protected]");
background-image: url("assets/selected-line.png"), url("assets/[email protected]"), image(rgba(255, 255, 255, 0.04));
background-position: 2px center;
background-repeat: no-repeat;
background-size: 3px 32px;
outline: none;
}

.content-view .tile:selected {
Expand Down
7 changes: 6 additions & 1 deletion src/gtk/3.0/gtk-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,16 @@ flowbox flowboxchild {
border-radius: 2px;
}

flowbox flowboxchild label.version-label {
background-clip: border-box;
}

flowbox flowboxchild:focus {
background-image: url("assets/selected-line.png"), url("assets/[email protected]");
background-image: url("assets/selected-line.png"), url("assets/[email protected]"), image(rgba(255, 255, 255, 0.04));
background-position: 4px center;
background-repeat: no-repeat;
background-size: 3px 32px;
outline: none;
}

.content-view .tile:selected {
Expand Down
7 changes: 6 additions & 1 deletion src/gtk/3.0/gtk-light-compact.css
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,16 @@ flowbox flowboxchild {
border-radius: 2px;
}

flowbox flowboxchild label.version-label {
background-clip: border-box;
}

flowbox flowboxchild:focus {
background-image: url("assets/selected-line.png"), url("assets/[email protected]");
background-image: url("assets/selected-line.png"), url("assets/[email protected]"), image(rgba(0, 0, 0, 0.04));
background-position: 2px center;
background-repeat: no-repeat;
background-size: 3px 32px;
outline: none;
}

.content-view .tile:selected {
Expand Down
7 changes: 6 additions & 1 deletion src/gtk/3.0/gtk-light.css
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,16 @@ flowbox flowboxchild {
border-radius: 2px;
}

flowbox flowboxchild label.version-label {
background-clip: border-box;
}

flowbox flowboxchild:focus {
background-image: url("assets/selected-line.png"), url("assets/[email protected]");
background-image: url("assets/selected-line.png"), url("assets/[email protected]"), image(rgba(0, 0, 0, 0.04));
background-position: 4px center;
background-repeat: no-repeat;
background-size: 3px 32px;
outline: none;
}

.content-view .tile:selected {
Expand Down
7 changes: 6 additions & 1 deletion src/gtk/3.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,16 @@ flowbox flowboxchild {
border-radius: 2px;
}

flowbox flowboxchild label.version-label {
background-clip: border-box;
}

flowbox flowboxchild:focus {
background-image: url("assets/selected-line.png"), url("assets/[email protected]");
background-image: url("assets/selected-line.png"), url("assets/[email protected]"), image(rgba(0, 0, 0, 0.04));
background-position: 4px center;
background-repeat: no-repeat;
background-size: 3px 32px;
outline: none;
}

.content-view .tile:selected {
Expand Down

0 comments on commit c45d730

Please sign in to comment.