by roundabout, Thursday, 27 February 2020, 16:53:05 (1582822385), pushed by roundabout, Sunday, 11 May 2025, 13:22:48 (1746969768)
Author identity: nana-4 <hnmaigo@gmail.com>
5c07f652ff9ae642674dea30e509f13c14bd1a56
src/_sass/gnome-shell/_common-3.26.scss
@@ -44,28 +44,6 @@
}
}
/* Entries */
StEntry {
min-height: $medium-size;
padding: 0 8px;
border-radius: $corner-radius $corner-radius 0 0;
border-width: 0;
color: $text;
selection-background-color: $overlay-selected;
selected-color: $text;
@include type(body1);
@include entry(normal);
&:hover { @include entry(hover);}
&:focus { @include entry(focus);}
&:insensitive { @include entry(insensitive);}
StIcon.capslock-warning {
icon-size: 16px;
warning-color: $warning;
padding: 0 0;
}
}
/* Scrollbars */
StScrollView {
src/_sass/gnome-shell/_common-3.28.scss
@@ -44,28 +44,6 @@
}
}
/* Entries */
StEntry {
min-height: $medium-size;
padding: 0 8px;
border-radius: $corner-radius $corner-radius 0 0;
border-width: 0;
color: $text;
selection-background-color: $overlay-selected;
selected-color: $text;
@include type(body1);
@include entry(normal);
&:hover { @include entry(hover);}
&:focus { @include entry(focus);}
&:insensitive { @include entry(insensitive);}
StIcon.capslock-warning {
icon-size: 16px;
warning-color: $warning;
padding: 0 0;
}
}
/* Scrollbars */
StScrollView {
src/_sass/gnome-shell/_common-3.30.scss
@@ -43,28 +43,6 @@
}
}
/* Entries */
StEntry {
min-height: $medium-size;
padding: 0 8px;
border-radius: $corner-radius $corner-radius 0 0;
border-width: 0;
color: $text;
selection-background-color: $overlay-selected;
selected-color: $text;
@include type(body1);
@include entry(normal);
&:hover { @include entry(hover);}
&:focus { @include entry(focus);}
&:insensitive { @include entry(insensitive);}
StIcon.capslock-warning {
icon-size: 16px;
warning-color: $warning;
padding: 0 0;
}
}
/* Scrollbars */
StScrollView {
src/_sass/gnome-shell/_common-3.32.scss
@@ -43,28 +43,6 @@
}
}
/* Entries */
StEntry {
min-height: $medium-size;
padding: 0 8px;
border-radius: $corner-radius $corner-radius 0 0;
border-width: 0;
color: $text;
selection-background-color: $overlay-selected;
selected-color: $text;
@include type(body1);
@include entry(normal);
&:hover { @include entry(hover);}
&:focus { @include entry(focus);}
&:insensitive { @include entry(insensitive);}
StIcon.capslock-warning {
icon-size: 16px;
warning-color: $warning;
padding: 0 0;
}
}
/* Scrollbars */
StScrollView {
src/_sass/gnome-shell/_common-3.34.scss
@@ -44,28 +44,6 @@
}
}
/* Entries */
StEntry, %entry {
min-height: $medium-size;
padding: 0 8px;
border-radius: $corner-radius $corner-radius 0 0;
border-width: 0;
color: $text;
selection-background-color: $overlay-selected;
selected-color: $text;
@include type(body1);
@include entry(normal);
&:hover { @include entry(hover);}
&:focus { @include entry(focus); border: none; }
&:insensitive { @include entry(insensitive);}
StIcon.capslock-warning {
icon-size: 16px;
warning-color: $warning;
padding: 0 0;
}
}
/* Scrollbars */
StScrollView {
src/_sass/gnome-shell/_components.scss
@@ -6,7 +6,7 @@
// Primary components
@import 'components/base';
// @import 'components/entry';
@import 'components/entry';
// @import 'components/button';
// @import 'components/check-box';
// @import 'components/switch';
src/_sass/gnome-shell/components/_entry.scss
@@ -1,27 +1,51 @@
/* Entries */
%entry,
StEntry {
border-radius: $base_border_radius;
padding: 8px;
border-width: 1px;
color: $fg_color;
min-height: $medium-size;
padding: 0 8px;
border-width: 0;
border-radius: $corner-radius $corner-radius 0 0;
color: $text;
selection-background-color: $overlay-selected;
selected-color: $text;
@include type(body1);
@include entry(normal);
//&:hover { @include entry(hover);}
&:focus { @include entry(focus);}
&:insensitive { @include entry(insensitive);}
selection-background-color: $selected_bg_color;
selected-color: $selected_fg_color;
&:hover {
@include entry(hover);
}
&:focus {
@include entry(focus);
@if $version == 3.34 {
border: 0;
}
}
&:insensitive {
@include entry(insensitive);
}
StIcon.capslock-warning {
icon-size: 16px;
warning-color: $warning_color;
padding: 0 4px;
warning-color: $warning;
}
StIcon.peek-password {
icon-size: $base_icon_size;
icon-size: 16px;
padding: 0 4px;
color: $text2;
&:hover {
color: $text;
}
}
StLabel.hint-text {
margin-left: 2px;
color: transparentize($fg_color, 0.3);
color: $text2;
}
}