mirror of
https://github.com/ansible/awx.git
synced 2026-03-11 14:39:30 -02:30
109 lines
2.0 KiB
Plaintext
109 lines
2.0 KiB
Plaintext
/*********************************************
|
|
* Copyright (c) 2014 AnsibleWorks, Inc.
|
|
*
|
|
* jobs.less
|
|
*
|
|
* custom styles for the jobs pages
|
|
*
|
|
*/
|
|
|
|
|
|
#jobs-page {
|
|
|
|
.jobs-list-container {
|
|
border: 1px solid @grey;
|
|
border-radius: 4px;
|
|
padding: 5px;
|
|
}
|
|
|
|
.job-list {
|
|
thead >tr >th, .page-row {
|
|
font-size: 12px;
|
|
color: #666;
|
|
}
|
|
.pagination li {
|
|
|
|
}
|
|
.pagination li a {
|
|
font-size: 12px;
|
|
padding-left: 3px;
|
|
padding-right: 3px;
|
|
padding-bottom: 2px;
|
|
}
|
|
i[class*="icon-job-"] {
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
|
|
#completed_jobs_table i[class*="icon-job-"] {
|
|
font-size: 13px;
|
|
}
|
|
|
|
#completed_jobs_table,
|
|
#schedules_table,
|
|
#running_jobs_table,
|
|
#queued_jobs_table {
|
|
table-layout:fixed;
|
|
}
|
|
#completed_jobs_table .name-column,
|
|
#schedules_table .name-column,
|
|
#running_jobs_table .name-column,
|
|
#queued_jobs_table .name-column,
|
|
{
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.title {
|
|
font-weight: bold;
|
|
margin-top: 5px;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
#breadcrumbs .nav-path {
|
|
background-color: @white;
|
|
}
|
|
|
|
#breadcrumb-list.breadcrumb {
|
|
background-color: @white;
|
|
}
|
|
|
|
}
|
|
|
|
@media (min-width: 1201px) {
|
|
#jobs-page {
|
|
.left-side {
|
|
padding-right: 7px;
|
|
}
|
|
|
|
.right-side {
|
|
padding-left: 7px;
|
|
}
|
|
|
|
.bottom-row {
|
|
margin-top: 15px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1200px) {
|
|
#jobs-page .jobs-list-container {
|
|
margin-top: 15px;
|
|
}
|
|
#jobs .jobs-list-container.completed {
|
|
margin-top: 0;
|
|
}
|
|
.title{
|
|
margin-bottom: 8px;
|
|
}
|
|
#jobs-page {
|
|
.left-side {
|
|
padding-right: 15px;
|
|
}
|
|
.right-side {
|
|
padding-left: 15px;
|
|
}
|
|
}
|
|
}
|