repoindex/web/css/core.css

201 lines
2.9 KiB
CSS

/*
* Buttons
*/
span.glyphicon {
position: relative;
top: 3px;
margin-right: 5px;
}
#row_repos_buttons {
margin-bottom: 7px;
}
#repos_buttons, #repo_buttons_settings_dropdown {
display: inline-block;
}
#repos_buttons a {
margin-right: 3px;
}
.btn-slim {
padding-left: 4px;
padding-right: 4px;
}
.btn-slim-glyphicon {
padding-left: 4px;
padding-right: 0px!important;
}
/*
* Tables
*/
.table {
clear: none !important;
width: 100%;
}
.table-list tr:nth-child(even), .table-list tr:nth-child(even) {
background-color: #F9F9F9;
}
.table-list th {
border-top: 2px solid #DDD!important;
vertical-align: middle!important;
background-color: #F9F9F9;
}
.table-list {
font-size: 85%!important;
}
.table-list td {
margin: 0px!important;
padding: 1px!important;
}
.table-list-clickable tr:hover {
background-color: #f9f9db!important;
cursor: pointer;
}
.info-table th, .info-table td {
border: none!important;
font-size: 90%;
padding: 5px;
vertical-align: top!important;
}
/*
* Callapse/expand
*/
@media print {
.collapse-group .togglelink {
display: none;
}
.collapse-group .collapse {
display: block;
visibility: visible;
height: auto;
}
}
/*
* Pagination
*/
.pagination-nav {
text-align: center;
}
.pagination > li > a {
display: inline-block;
width: 35px;
}
.pagination-btnsettings {
display: inline;
}
/*
* Navigation
*/
.navbar-fixed-top {
border-bottom: 5px solid #337ab7;
}
/*
* Tabbing
*/
.tab-content > div {
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
padding: 5px;
}
/*
* Package info
*/
.info-container {
margin-left: 5px;
}
.info-container {
float: none;
width: 100%;
}
.file-tree ul {
margin: 0px;
padding: 0px;
list-style-type: none;
}
.file-tree ul ul {
margin-left: 5px;
}
#multi_package_info_container > div {
float: left;
width: 350px;
}
#packages_info {
clear: both;
}
/*
* Tree
*/
.tree-link-expanded, .tree-link-collapsed {
color: #337AB7;
}
.tree-link-expanded:before, .tree-link-collapsed:before {
padding-left: -5px;
color: #777;
}
.tree-link-expanded:before {
content: "▾ ";
}
.tree-link-collapsed:before {
content: "▸ ";
}
/*
* Animations
*/
@keyframes spin {
from {
transform: scale(1) rotate(0deg);
}
to {
transform: scale(1) rotate(360deg);
}
}
@-webkit-keyframes spin2 {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
.glyphicon-refresh-animate {
animation: spin .7s infinite linear;
-webkit-animation: spin2 .7s infinite linear;
}
/*
* Misc
*/
@media print {
h1 {
margin-top: 5px;
margin-bottom: 0px;
font-size: 20px;
}
h2 {
margin-top: 5px;
margin-bottom: 0px;
font-size: 18px;
}
}
#error_box {
display: none;
}
#list_mirror_selection {
list-style-type: none;
}
#right_column_container_packages, #right_column_container_repos {
display: none;
}
.well {
margin-bottom: 3px;
}