Start on new tag view
This commit is contained in:
parent
581a284744
commit
afc8e95e19
103 changed files with 148505 additions and 458 deletions
|
@ -754,3 +754,136 @@
|
|||
vertical-align: middle;
|
||||
font-family: FontAwesome;
|
||||
}
|
||||
|
||||
.co-table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.co-table td {
|
||||
border-bottom: 1px solid #eee;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.co-table thead td {
|
||||
text-transform: uppercase;
|
||||
font-size: 16px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.co-table thead td a {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.co-table thead td:after {
|
||||
content: "\f175";
|
||||
font-family: FontAwesome;
|
||||
font-size: 12px;
|
||||
margin-left: 10px;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.co-table thead td.current:after {
|
||||
content: "\f175";
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.co-table thead td.current.reversed:after {
|
||||
content: "\f176";
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.co-table thead td.current a {
|
||||
color: #337ab7;
|
||||
}
|
||||
|
||||
.co-table .checkbox-col {
|
||||
width: 24px;
|
||||
}
|
||||
|
||||
.co-table td.options-col {
|
||||
width: 30px;
|
||||
}
|
||||
|
||||
.cor-checkable-menu {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.co-checkable-menu .co-checkable-menu-state {
|
||||
display: inline-block;
|
||||
margin-left: -1px;
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.co-checkable-menu .dropdown {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.co-checkable-item, .co-checkable-menu-state {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
cursor: pointer;
|
||||
border: 1px solid #ddd;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
|
||||
position: relative
|
||||
}
|
||||
|
||||
.co-checkable-item:after, .co-checkable-menu-state:after {
|
||||
content: "\f00c";
|
||||
font-family: FontAwesome;
|
||||
color: #ccc;
|
||||
|
||||
position: absolute;
|
||||
top: -1px;
|
||||
left: 1px;
|
||||
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.co-checkable-menu-state.some:after {
|
||||
content: "-";
|
||||
font-size: 35px;
|
||||
top: -19px;
|
||||
left: 2px;
|
||||
}
|
||||
|
||||
.co-checkable-item:hover:after {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.co-checkable-item.checked:after, .co-checkable-menu-state.all:after, .co-checkable-menu-state.some:after {
|
||||
visibility: visible;
|
||||
color: #428bca;
|
||||
}
|
||||
|
||||
.co-table .co-checkable-row.checked {
|
||||
background: #F6FCFF;
|
||||
}
|
||||
|
||||
.co-check-bar {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.co-check-bar .co-checked-actions {
|
||||
display: inline-block;
|
||||
border-left: 1px solid #eee;
|
||||
margin-left: 10px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.co-check-bar .co-checked-actions .btn {
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
.co-check-bar .co-checked-actions .btn .fa {
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.co-check-bar .co-filter-box {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.co-check-bar .co-filter-box input {
|
||||
width: 300px;
|
||||
}
|
||||
|
|
60
static/css/directives/repo-view/repo-panel-tags.css
Normal file
60
static/css/directives/repo-view/repo-panel-tags.css
Normal file
|
@ -0,0 +1,60 @@
|
|||
.repo-panel-tags-element .fa-tag {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.repo-panel-tags-element .empty {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.repo-panel-tags-element .image-track {
|
||||
width: 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.repo-panel-tags-element .image-track-dot:after {
|
||||
content: "\f10c";
|
||||
font-family: FontAwesome;
|
||||
|
||||
display: inline-block;
|
||||
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
left: 0px;
|
||||
width: 17px;
|
||||
|
||||
font-size: 11px;
|
||||
text-align: center;
|
||||
|
||||
background: white;
|
||||
z-index: 300;
|
||||
height: 13px;
|
||||
}
|
||||
|
||||
.repo-panel-tags-element .image-track-line {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
bottom: -11px;
|
||||
left: 7px;
|
||||
width: 0px;
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
border-left: 2px solid black;
|
||||
|
||||
display: none;
|
||||
z-index: 200;
|
||||
}
|
||||
|
||||
.repo-panel-tags-element .image-track-line.start {
|
||||
top: 18px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.repo-panel-tags-element .image-track-line.middle {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.repo-panel-tags-element .image-track-line.end {
|
||||
top: -1px;
|
||||
height: 16px;
|
||||
display: block;
|
||||
}
|
|
@ -86,7 +86,7 @@
|
|||
background: linear-gradient(to bottom, rgba(255,240,188,1) 0%,rgba(255,255,255,0.5) 5%,rgba(255,255,255,0.49) 51%,rgba(255,255,255,0) 100%); /* W3C */
|
||||
}
|
||||
|
||||
.star-icon {
|
||||
.repo-list-grid .star-icon {
|
||||
color: #ddd;
|
||||
display: block;
|
||||
font-size: 1.2em;
|
||||
|
@ -94,15 +94,6 @@
|
|||
line-height: 2em;
|
||||
}
|
||||
|
||||
.star-icon:hover {
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
}
|
||||
|
||||
.star-icon.starred {
|
||||
color: #ffba6d;
|
||||
}
|
||||
|
||||
.new-repo-listing {
|
||||
display: block;
|
||||
font-size: 14px;
|
8
static/css/directives/ui/repo-star.css
Normal file
8
static/css/directives/ui/repo-star.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
.repo-star .star-icon:hover {
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
}
|
||||
|
||||
.repo-star .star-icon.starred {
|
||||
color: #ffba6d;
|
||||
}
|
16
static/css/pages/repo-view.css
Normal file
16
static/css/pages/repo-view.css
Normal file
|
@ -0,0 +1,16 @@
|
|||
.repository-view .repo-circle {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.repository-view .cor-title-content .repo-star {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.repository-view .repo-star {
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
.repository-view .tab-header {
|
||||
margin-top: 0px;
|
||||
margin-bottom: 20px;
|
||||
}
|
Reference in a new issue