mirror of
https://github.com/ansible/awx.git
synced 2026-02-18 19:50:05 -03:30
50 lines
769 B
Plaintext
50 lines
769 B
Plaintext
/*********************************************
|
|
* Copyright (c) 2015 Ansible, Inc.
|
|
*
|
|
* portal.css
|
|
*
|
|
* custom styles for poral mode
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
.portal-container{
|
|
border: 1px solid @grey;
|
|
border-radius: 4px;
|
|
padding: 5px;
|
|
}
|
|
|
|
.portal-header{
|
|
margin: 5px;
|
|
margin-left: 10px;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#portal-jobs{
|
|
margin-top: 20px;
|
|
}
|
|
@media (min-width: 769px) {
|
|
.left-side {
|
|
padding-right: 7px;
|
|
}
|
|
|
|
.right-side {
|
|
padding-left: px;
|
|
}
|
|
}
|
|
|
|
#job_templates_table,
|
|
#portal_jobs_table {
|
|
table-layout:fixed;
|
|
}
|
|
#portal_jobs_table .name-column,
|
|
#job_templates_table .name-column {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|