summaryrefslogtreecommitdiffstats
path: root/web_src
diff options
context:
space:
mode:
Diffstat (limited to 'web_src')
-rw-r--r--web_src/less/_repository.less79
1 files changed, 79 insertions, 0 deletions
diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less
index 13f9384ba0..f8a23e071a 100644
--- a/web_src/less/_repository.less
+++ b/web_src/less/_repository.less
@@ -3328,4 +3328,83 @@ td.blob-excerpt {
}
}
}
+ .commit-header-row {
+ .ui.horizontal.list {
+ width: 100%;
+ overflow-x: scroll;
+ margin-top: 2px;
+
+ .item {
+ align-items: center;
+ display: flex;
+ }
+ }
+
+ .author {
+ padding: 3px 0;
+ }
+ }
+
+ .commit-header h3 {
+ flex-basis: auto !important;
+ margin-bottom: .5rem !important;
+ }
+
+ .commits-table {
+ flex-direction: column;
+
+ .commits-table-left {
+ align-items: initial !important;
+ margin-bottom: 6px;
+ }
+
+ .commits-table-right form {
+ display: flex;
+ flex-wrap: wrap;
+
+ > div:nth-child(1) {
+ order: 1;
+ }
+
+ > div:nth-child(2) {
+ order: 3;
+ margin-left: .5rem;
+ margin-top: .5rem;
+ }
+
+ > button:nth-child(3) {
+ order: 2;
+ margin-left: .25rem;
+ }
+ }
+ }
+
+ .commit-table {
+ overflow-x: scroll;
+
+ td.sha,
+ th.sha {
+ display: none !important;
+ }
+
+ .commit-list {
+ span.message-wrapper {
+ max-width: none;
+ }
+
+ tr td:last-child {
+ display: block;
+ width: max-content;
+ }
+
+ td.author {
+ display: block;
+ width: calc(100% + .5rem);
+ }
+
+ .copy-commit-sha {
+ display: none !important;
+ }
+ }
+ }
}