Skip to content

Commit 0e95193

Browse files
feat(ui): allows more convenient sorting of repository. (#19829)
Signed-off-by: EunJiJung <[email protected]> Signed-off-by: Eunji <[email protected]> Co-authored-by: Suraj yadav <[email protected]>
1 parent 4b1bd18 commit 0e95193

File tree

2 files changed

+248
-83
lines changed

2 files changed

+248
-83
lines changed
Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,31 @@
11
@import 'node_modules/argo-ui/src/styles/config';
2+
@import 'node_modules/argo-ui/src/styles/theme';
23

34
.repos-list {
45
&__top-panel {
56
padding: 1em;
6-
77
& > .columns:first-child {
88
font-size: 8em;
99
text-align: center;
1010
}
11-
1211
& > .columns:last-child {
1312
text-align: center;
1413
border-left: 2px solid $argo-color-gray-4;
15-
1614
& > p {
1715
margin-bottom: 0;
1816
margin-top: 24px;
1917
&:first-of-type {
2018
font-size: 1.25em;
2119
}
2220
}
23-
2421
& > button {
2522
width: 15em;
2623
}
2724
}
2825
}
29-
3026
.argo-table-list {
3127
.item-clickable {
3228
cursor: pointer;
33-
3429
&:hover {
3530
box-shadow: 1px 2px 3px rgba($argo-color-gray-9, 0.1), 0 0 0 1px rgba($argo-color-teal-5, 0.5);
3631
}
@@ -39,12 +34,24 @@
3934
float: right;
4035
}
4136
}
42-
4337
textarea.argo-field {
4438
height: 20em;
4539
width: 1024em;
4640
white-space: pre;
4741
overflow-wrap: normal;
4842
overflow-x: scroll;
4943
}
44+
45+
.argo-container {
46+
@include themify($themes) {
47+
input.argo-field {
48+
border-bottom: 2px solid themed('light-argo-teal-5') !important;
49+
}
50+
}
51+
52+
input.argo-field:focus {
53+
outline: none;
54+
border-bottom: 2px solid $argo-color-teal-6 !important;
55+
}
56+
}
5057
}

0 commit comments

Comments
 (0)