This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/css/directives/ui/source-commit-link.css

42 lines
785 B
CSS
Raw Normal View History

2015-04-30 19:33:19 +00:00
.source-commit-link-element .commit-circle {
margin-right: 6px;
2015-02-26 22:45:28 +00:00
display: inline-block;
2015-04-30 19:33:19 +00:00
padding-top: 2px;
2015-04-22 17:42:36 +00:00
}
2015-04-30 19:33:19 +00:00
.source-commit-link-element .commit-circle {
display: inline-block;
border: 2px solid #999;
width: 10px;
height: 10px;
border-radius: 50%;
position: relative;
}
.source-commit-link-element .commit-circle:before,
.source-commit-link-element .commit-circle:after {
content: "";
display: inline-block;
border-top: 2px solid #999;
height: 10px;
width: 4px;
position: absolute;
top: 2px;
}
.source-commit-link-element .commit-circle:before {
left: -5px;
}
.source-commit-link-element .commit-circle:after {
left: 7px;
}
2015-04-22 17:42:36 +00:00
.source-commit-link-element {
white-space: nowrap;
2015-04-30 19:33:19 +00:00
}
.source-commit-link-element .anchor {
vertical-align: middle;
2015-02-26 22:45:28 +00:00
}