-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/feature/stats' into add/stat-lis…
…ting-search-impressions
- Loading branch information
Showing
26 changed files
with
1,120 additions
and
678 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
|
||
@import "mixins"; | ||
|
||
#job-manager-job-dashboard { | ||
|
||
} | ||
|
||
.jm-dashboard-job, .jm-dashboard-header { | ||
display: flex; | ||
align-items: center; | ||
padding: var(--jm-ui-space-sm); | ||
gap: var(--jm-ui-space-sm); | ||
margin: var(--jm-ui-space-sm) 0; | ||
font-size: var(--jm-ui-font-size-m); | ||
} | ||
|
||
.jm-dashboard-header { | ||
color: fadeCurrentColor(85%); | ||
margin-bottom: unset; | ||
padding-bottom: unset; | ||
} | ||
|
||
.jm-dashboard__intro { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: baseline; | ||
flex-wrap: wrap; | ||
gap: var(--jm-ui-space-sm); | ||
} | ||
|
||
.jm-dashboard-job { | ||
border: var(--jm-ui-border-size) solid var(--jm-ui-border-light); | ||
} | ||
|
||
.jm-dashboard-job-column { | ||
flex: 1 1 calc(50% - var(--jm-ui-space-sm)); | ||
min-width: 0; | ||
} | ||
|
||
.jm-dashboard small { | ||
font-size: var(--jm-ui-font-size-s); | ||
} | ||
|
||
.jm-dashboard-job-column.job_title { | ||
flex: 1 1 200%; | ||
|
||
.job-status { | ||
text-transform: uppercase; | ||
font-weight: 500; | ||
font-size: var(--jm-ui-font-size-s); | ||
line-height: var(--jm-ui-icon-size-s); | ||
color: fadeCurrentColor( 80% ); | ||
|
||
.jm-ui-icon { | ||
width: var(--jm-ui-icon-size-s); | ||
height: var(--jm-ui-icon-size-s); | ||
} | ||
} | ||
} | ||
|
||
|
||
.jm-dashboard-job-column.actions { | ||
flex: 0.5 1 100%; | ||
text-align: right; | ||
} | ||
|
||
.jm-dashboard-job-column a.job-title { | ||
font-weight: 600; | ||
font-size: var(--jm-ui-font-size); | ||
text-decoration: unset; | ||
} | ||
|
||
.jm-dashboard-job-column a.job-title:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.jm-dashboard-action { | ||
display: block; | ||
text-decoration: none; | ||
|
||
} | ||
.jm-dashboard-action:where(:not(:hover):not(:focus)) { | ||
color: inherit; | ||
} | ||
|
||
.job-dashboard-action-delete { | ||
color: var(--jm-ui-danger-color); | ||
} | ||
|
||
@media (max-width: 600px) { | ||
.jm-dashboard-job { | ||
flex-wrap: wrap; | ||
} | ||
|
||
.jm-dashboard-header { | ||
display: none; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.