mirror of
https://github.com/ansible/awx.git
synced 2026-03-09 21:49:27 -02:30
36 lines
651 B
Plaintext
36 lines
651 B
Plaintext
/*********************************************
|
|
* Copyright (c) 2015 Ansible, Inc.
|
|
*
|
|
* lists.less
|
|
*
|
|
* custom styles for generated lists
|
|
*
|
|
*/
|
|
|
|
.list-well {
|
|
margin-top: 20px;
|
|
|
|
table >thead >tr >th {
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
|
|
.is-selected-row, .is-selected-row td {
|
|
background-color: #E4F1FF !important;
|
|
}
|
|
|
|
.select-column {
|
|
text-align: center;
|
|
}
|
|
|
|
th.select-column {
|
|
label {
|
|
// overrides the default style of
|
|
// display: inline-block, which allowed
|
|
// margins to push down the label,
|
|
// thus breaking the vertical-alignment
|
|
// of the cell
|
|
display: inline;
|
|
}
|
|
}
|