-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modify width of ui container, fine tune css for settings pages and org header #24315
Changes from 30 commits
5630a83
566863b
fe0b8a7
720b39b
6691476
f5f446e
33b2df7
b5d8817
52080d1
74dcc08
315824e
a208165
c0b6b60
5fe819f
8ed9562
cfaed33
b1a5166
dd166a2
b4edd18
3378b99
629f483
4d37e18
6dda871
0dbeabe
2381abc
7848d0c
4fcbad8
4715e77
3abc95a
4f85f34
03f301b
65a2d9e
11f3f0c
df2db9b
ea0f79a
41f7d44
cbe8a46
a0ce6cb
52a729f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{{template "org/settings/layout_head" (dict "ctxData" . "pageClass" "organization settings runners")}} | ||
<div class="org-setting-content"> | ||
{{template "shared/actions/runner_list" .}} | ||
</div> | ||
<div class="org-setting-content"> | ||
{{template "shared/actions/runner_list" .}} | ||
</div> | ||
{{template "org/settings/layout_footer" .}} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* This css is for table elements inside all levels settings pages */ | ||
.g-grid-setting-right .table.segment { | ||
padding: 0; | ||
font-size: 0.9em; | ||
overflow-x: auto; | ||
} | ||
|
||
.g-grid-setting-right .table.segment:not(.striped) thead th:last-child { | ||
padding-right: 5px !important; | ||
} | ||
|
||
.g-grid-setting-right .table.segment th { | ||
padding-top: 5px; | ||
padding-bottom: 5px; | ||
} | ||
|
||
.g-grid-setting-right .table.segment:not(.select) th:first-of-type, | ||
.g-grid-setting-right .table.segment:not(.select) td:first-of-type { | ||
padding-left: 15px !important; | ||
} | ||
|
||
.g-grid-setting-right .table.segment form tbody button[type="submit"] { | ||
padding: 5px 8px; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why this? There are also other There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is copied from the old code, which is table related. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am pretty sure that we do not need them ... will do more fine tunes |
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
overflow-x
is needed, might need to open another PR to fix this:There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, luckily we only need one
overflow-x
now. Maybe we need to write a comment about how to test such style (I just forgot ...)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix admin table layout #24370