2013-10-12 01:28:02 +00:00
|
|
|
* {
|
|
|
|
font-family: 'Droid Sans', sans-serif;
|
|
|
|
}
|
2013-10-05 02:18:42 +00:00
|
|
|
|
2013-11-06 19:19:56 +00:00
|
|
|
.button-hidden {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2013-11-04 19:56:54 +00:00
|
|
|
.organization-header-element {
|
2013-11-05 22:20:43 +00:00
|
|
|
padding: 20px;
|
2013-11-04 19:56:54 +00:00
|
|
|
margin-bottom: 20px;
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.organization-header-element .organization-name {
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.organization-header-element .divider {
|
|
|
|
color: #aaa;
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.organization-header-element .organization-name {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 20px;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2013-11-05 00:36:56 +00:00
|
|
|
.organization-header-element .team-name {
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
|
2013-11-05 22:20:43 +00:00
|
|
|
.organization-header-element .header-buttons {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2013-11-01 21:35:26 +00:00
|
|
|
.namespace-selector-dropdown .namespace {
|
|
|
|
padding: 6px;
|
|
|
|
padding-left: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2013-11-07 05:49:13 +00:00
|
|
|
.namespace-selector-dropdown .namespace-item {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.namespace-selector-dropdown .namespace-item .fa {
|
|
|
|
position: absolute;
|
|
|
|
right: 12px;
|
|
|
|
top: 12px;
|
|
|
|
color: #aaa;
|
|
|
|
}
|
|
|
|
|
|
|
|
.namespace-selector-dropdown .namespace-item.disabled img {
|
|
|
|
-webkit-filter: grayscale(1);
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.namespace-selector-dropdown .namespace-item .tooltip-inner {
|
|
|
|
min-width: 200px;
|
|
|
|
}
|
|
|
|
|
2013-10-23 03:10:32 +00:00
|
|
|
.user-notification {
|
|
|
|
background: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-notification.notification-animated {
|
|
|
|
width: 21px;
|
|
|
|
|
|
|
|
transform: scale(0);
|
|
|
|
-moz-transform: scale(0);
|
|
|
|
-webkit-transform: scale(0);
|
|
|
|
|
|
|
|
animation: scaleup 500ms 1;
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
|
|
|
|
-moz-animation: scaleup 500ms 1;
|
|
|
|
-moz-animation-timing-function: ease-in-out;
|
|
|
|
-moz-animation-fill-mode: forwards;
|
|
|
|
|
|
|
|
-webkit-animation: scaleup 500ms 1;
|
|
|
|
-webkit-animation-timing-function: ease-in-out;
|
|
|
|
-webkit-animation-fill-mode: forwards;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-moz-keyframes scaleup {
|
|
|
|
0% { -moz-transform: scale(0); }
|
|
|
|
100% { -moz-transform: scale(1); }
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes scaleup {
|
|
|
|
0% { -webkit-transform: scale(0); }
|
|
|
|
100% { -webkit-transform: scale(1); }
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes scaleup {
|
|
|
|
0% { transform: scale(0); }
|
|
|
|
100% { transform: scale(1); }
|
|
|
|
}
|
|
|
|
|
2013-10-24 22:13:24 +00:00
|
|
|
.user-tools .user-tool {
|
|
|
|
font-size: 24px;
|
|
|
|
margin-top: 14px;
|
2013-10-28 17:09:22 +00:00
|
|
|
color: #aaa;
|
2013-10-24 22:13:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-tools i.user-tool:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
color: #428bca;
|
|
|
|
}
|
|
|
|
|
2013-10-28 17:09:22 +00:00
|
|
|
.status-boxes .popover {
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
2013-10-23 03:10:32 +00:00
|
|
|
|
2013-10-28 17:09:22 +00:00
|
|
|
.status-boxes .popover-content {
|
|
|
|
width: 260px;
|
|
|
|
}
|
|
|
|
|
2013-10-26 20:03:11 +00:00
|
|
|
.build-statuses {
|
|
|
|
}
|
|
|
|
|
|
|
|
.build-status-container {
|
|
|
|
padding: 4px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
border-bottom: 1px solid #eee;
|
2013-10-28 17:09:22 +00:00
|
|
|
width: 230px;
|
2013-10-26 20:03:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.build-status-container .build-message {
|
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
2013-10-28 17:09:22 +00:00
|
|
|
font-size: 12px;
|
2013-10-26 20:03:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.build-status-container .progress {
|
|
|
|
height: 12px;
|
|
|
|
margin: 0px;
|
|
|
|
margin-top: 10px;
|
2013-10-28 17:09:22 +00:00
|
|
|
width: 230px;
|
2013-10-26 20:03:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.build-status-container:last-child {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
border-bottom: 0px solid white;
|
|
|
|
}
|
2013-10-23 03:10:32 +00:00
|
|
|
|
2013-10-22 05:26:14 +00:00
|
|
|
.repo-circle {
|
|
|
|
position: relative;
|
|
|
|
background: #eee;
|
|
|
|
padding: 4px;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: inline-block;
|
|
|
|
width: 46px;
|
|
|
|
height: 46px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-circle.no-background {
|
|
|
|
background: transparent;
|
2013-10-24 21:51:09 +00:00
|
|
|
position: relative;
|
2013-10-22 05:26:14 +00:00
|
|
|
height: 40px;
|
|
|
|
width: 40px;
|
|
|
|
}
|
|
|
|
|
2013-10-24 21:51:09 +00:00
|
|
|
.repo-circle .fa-hdd {
|
|
|
|
font-size: 36px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-circle.no-background .fa-hdd {
|
|
|
|
font-size: 30px;
|
|
|
|
}
|
|
|
|
|
2013-10-24 21:41:37 +00:00
|
|
|
.repo-circle .fa-lock {
|
2013-10-22 05:26:14 +00:00
|
|
|
position: absolute;
|
2013-10-24 21:51:09 +00:00
|
|
|
bottom: -2px;
|
|
|
|
right: -4px;
|
2013-10-22 05:26:14 +00:00
|
|
|
background: rgb(253, 191, 191);
|
|
|
|
width: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
border-radius: 50%;
|
|
|
|
text-align: center;
|
|
|
|
height: 20px;
|
|
|
|
line-height: 21px;
|
2013-10-24 21:51:09 +00:00
|
|
|
font-size: 16px !important;
|
2013-10-22 05:26:14 +00:00
|
|
|
}
|
|
|
|
|
2013-10-24 21:41:37 +00:00
|
|
|
.repo-circle.no-background .fa-lock {
|
2013-10-24 21:51:09 +00:00
|
|
|
bottom: -2px;
|
2013-10-22 05:26:14 +00:00
|
|
|
right: -6px;
|
|
|
|
color: #444;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-17 18:46:23 +00:00
|
|
|
.description-overview {
|
|
|
|
padding: 4px;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description-list {
|
|
|
|
margin: 10px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description-list li:before {
|
|
|
|
content: "\00BB";
|
|
|
|
margin-right: 6px;
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description-list li {
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info-icon {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
vertical-align: middle;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
2013-10-14 23:28:49 +00:00
|
|
|
.accordion-toggle {
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: none !important;
|
|
|
|
}
|
|
|
|
|
2013-10-28 21:08:26 +00:00
|
|
|
.new-repo .required-plan {
|
|
|
|
margin: 10px;
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-left: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.new-repo .required-plan .alert {
|
|
|
|
color: #444 !important;
|
|
|
|
}
|
|
|
|
|
2013-10-31 19:04:07 +00:00
|
|
|
.new-repo .new-header .popover {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2013-10-24 21:41:55 +00:00
|
|
|
.new-repo .new-header .repo-circle {
|
|
|
|
margin-right: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.new-repo .new-header .name-container {
|
|
|
|
display: inline-block;
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.new-repo .description {
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.new-repo .section {
|
|
|
|
padding-bottom: 20px;
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.new-repo .repo-option {
|
|
|
|
margin: 6px;
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.new-repo .repo-option i {
|
|
|
|
font-size: 18px;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
width: 42px;
|
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.new-repo .option-description {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.new-repo .option-description label {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.new-repo .cbox {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
2013-10-24 22:13:24 +00:00
|
|
|
.new-repo .initialize-repo {
|
|
|
|
margin: 10px;
|
|
|
|
margin-top: 16px;
|
|
|
|
margin-left: 20px;
|
|
|
|
padding: 10px;
|
|
|
|
border: 1px dashed #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.new-repo .initialize-repo .init-description {
|
|
|
|
color: #444;
|
|
|
|
font-size: 12px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.new-repo .initialize-repo .file-drop {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
2013-10-17 18:46:23 +00:00
|
|
|
.user-guide h3 {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-guide h3 .label {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2013-10-02 22:14:51 +00:00
|
|
|
.plans .callout {
|
|
|
|
font-size: 2em;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
2013-10-04 18:35:51 +00:00
|
|
|
.plans .all-plans {
|
|
|
|
font-size: 16px;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plans .all-plans .feature {
|
|
|
|
color: #428bca;
|
|
|
|
}
|
|
|
|
|
2013-11-05 19:40:45 +00:00
|
|
|
.plans .all-plans .business-feature {
|
|
|
|
color: #46ac39;
|
|
|
|
}
|
|
|
|
|
2013-10-02 22:14:51 +00:00
|
|
|
.plans-list {
|
|
|
|
text-align: center;
|
2013-10-04 18:35:51 +00:00
|
|
|
margin-bottom: 25px;
|
2013-10-02 22:14:51 +00:00
|
|
|
}
|
|
|
|
|
2013-11-05 19:40:45 +00:00
|
|
|
.plans-list .plan-container {
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2013-10-02 22:14:51 +00:00
|
|
|
.plans-list .plan {
|
|
|
|
vertical-align: top;
|
|
|
|
|
|
|
|
padding: 10px;
|
|
|
|
border: 1px solid #eee;
|
|
|
|
border-top: 4px solid #94C9F7;
|
2013-11-05 19:40:45 +00:00
|
|
|
font-size: 1.4em;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2013-10-02 22:14:51 +00:00
|
|
|
|
2013-11-05 19:40:45 +00:00
|
|
|
.plans-list .plan.small {
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
border-top: 4px solid #428bca;
|
|
|
|
margin-top: 0px;
|
|
|
|
font-size: 1.6em;
|
|
|
|
}
|
2013-10-02 22:14:51 +00:00
|
|
|
|
2013-11-05 19:40:45 +00:00
|
|
|
.plans-list .plan.business-plan {
|
|
|
|
border: 1px solid #eee;
|
|
|
|
border-top: 4px solid #94F794;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plans-list .plan.bus-small {
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
border-top: 4px solid #47A447;
|
|
|
|
margin-top: 0px;
|
|
|
|
font-size: 1.6em;
|
2013-10-02 22:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.plans-list .plan:last-child {
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plans-list .plan .plan-title {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
display: block;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plan-price {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
display: block;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.8em;
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plan-price:after {
|
2013-11-05 19:40:45 +00:00
|
|
|
content: "/ mo";
|
2013-10-02 22:14:51 +00:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
right: 20px;
|
|
|
|
font-size: 12px;
|
|
|
|
color: #aaa;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plans-list .plan .count {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plans-list .plan .count b {
|
|
|
|
color: #428bca;
|
|
|
|
}
|
|
|
|
|
2013-11-05 19:40:45 +00:00
|
|
|
.plans-list .plan.business-plan .count b {
|
|
|
|
color: #46ac39;
|
|
|
|
}
|
|
|
|
|
2013-10-02 22:14:51 +00:00
|
|
|
.plans-list .plan .description {
|
|
|
|
font-size: 1em;
|
|
|
|
font-size: 16px;
|
2013-10-22 05:26:14 +00:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plans-list .plan .smaller {
|
|
|
|
font-size: 12px;
|
2013-10-02 22:14:51 +00:00
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
2013-10-04 18:35:51 +00:00
|
|
|
.plans-list .plan .features {
|
|
|
|
font-size: 16px;
|
|
|
|
text-align: left;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plans-list .plan .features i {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plans .plan-faq dd{
|
|
|
|
margin-bottom: 20px;
|
2013-10-02 22:14:51 +00:00
|
|
|
}
|
|
|
|
|
2013-10-01 20:42:20 +00:00
|
|
|
.loading {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
2013-10-31 19:04:07 +00:00
|
|
|
.landing .popover {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2013-10-01 01:11:30 +00:00
|
|
|
.landing {
|
2013-10-03 17:54:59 +00:00
|
|
|
color: white;
|
2013-10-01 01:11:30 +00:00
|
|
|
|
2013-10-03 17:54:59 +00:00
|
|
|
background-color: #1d1d1d;
|
2013-10-09 21:57:29 +00:00
|
|
|
background-position: left -30px;
|
2013-10-12 17:14:22 +00:00
|
|
|
background-image: url(../img/containers-back-black.jpg);
|
2013-10-03 17:54:59 +00:00
|
|
|
background-repeat: no-repeat;
|
2013-10-01 01:11:30 +00:00
|
|
|
|
2013-10-03 17:54:59 +00:00
|
|
|
margin-top: -20px;
|
|
|
|
margin-bottom: 0px;
|
2013-10-01 01:11:30 +00:00
|
|
|
|
2013-10-10 18:42:14 +00:00
|
|
|
padding-top: 46px;
|
2013-10-01 01:11:30 +00:00
|
|
|
|
2013-10-09 21:57:29 +00:00
|
|
|
min-height: 440px;
|
2013-10-01 01:11:30 +00:00
|
|
|
}
|
|
|
|
|
2013-10-03 17:54:59 +00:00
|
|
|
.landing .messages {
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
2013-10-01 01:11:30 +00:00
|
|
|
|
2013-10-03 17:54:59 +00:00
|
|
|
.landing .messages b {
|
|
|
|
color: #94C9F7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.landing .messages h1 {
|
|
|
|
font-size: 48px;
|
2013-10-01 01:11:30 +00:00
|
|
|
}
|
|
|
|
|
2013-10-03 17:54:59 +00:00
|
|
|
.form-signup input {
|
2013-10-01 01:11:30 +00:00
|
|
|
margin: 12px;
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-10 18:42:14 +00:00
|
|
|
.signin-buttons {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.landing-signup-button {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.landing-social-alternate {
|
|
|
|
color: #777;
|
|
|
|
font-size: 2em;
|
|
|
|
margin-left: 43px;
|
|
|
|
line-height: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.landing-social-alternate .inner-text {
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
color: white;
|
|
|
|
left: -43px;
|
|
|
|
top: -9px;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: .4em;
|
|
|
|
}
|
|
|
|
|
2013-10-10 17:44:34 +00:00
|
|
|
form input.ng-invalid.ng-dirty {
|
2013-10-01 23:37:33 +00:00
|
|
|
background-color: #FDD7D9;
|
|
|
|
}
|
|
|
|
|
2013-10-10 17:44:34 +00:00
|
|
|
form input.ng-valid.ng-dirty {
|
2013-10-01 23:37:33 +00:00
|
|
|
background-color: #DDFFEE;
|
|
|
|
}
|
|
|
|
|
2013-10-05 02:18:42 +00:00
|
|
|
.product-tour .tour-header {
|
2013-10-09 21:57:29 +00:00
|
|
|
height: 172px;
|
2013-10-05 02:18:42 +00:00
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
border-bottom: 4px solid black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.product-tour .tour-header .tour-shoutout-header {
|
2013-10-09 21:57:29 +00:00
|
|
|
margin: 10px;
|
2013-10-05 02:18:42 +00:00
|
|
|
font-size: 4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.product-tour .tour-header .tour-shoutout {
|
|
|
|
font-size: 2em;
|
|
|
|
color: #444;
|
|
|
|
}
|
|
|
|
|
|
|
|
.product-tour .tour-section {
|
2013-10-05 18:33:31 +00:00
|
|
|
margin-bottom: 60px;
|
2013-10-05 02:18:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.product-tour .tour-section .tour-section-title {
|
|
|
|
font-size: 1.8em;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.product-tour .tour-section .tour-section-description {
|
|
|
|
font-size: 1.2em;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2013-10-01 23:37:33 +00:00
|
|
|
.landing .popover-content {
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
2013-10-01 01:11:30 +00:00
|
|
|
.landing .shoutout i {
|
|
|
|
font-size: 36px;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.landing .shoutout b {
|
|
|
|
font-size: 22px;
|
|
|
|
display: block;
|
2013-10-03 17:54:59 +00:00
|
|
|
line-height: 31px;
|
2013-10-01 01:11:30 +00:00
|
|
|
}
|
|
|
|
|
2013-10-03 17:54:59 +00:00
|
|
|
.landing .shoutout {
|
|
|
|
font-size: 14px;
|
|
|
|
text-align: center;
|
|
|
|
line-height: normal;
|
2013-10-02 04:28:24 +00:00
|
|
|
}
|
|
|
|
|
2013-10-09 21:57:29 +00:00
|
|
|
@media (max-height: 768px) {
|
|
|
|
.landing {
|
|
|
|
padding: 20px;
|
2013-10-10 18:42:14 +00:00
|
|
|
padding-top: 20px;
|
2013-10-09 21:57:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-03 17:54:59 +00:00
|
|
|
.landing-footer {
|
|
|
|
background-color: white;
|
|
|
|
background-image: none;
|
2013-10-05 02:18:42 +00:00
|
|
|
padding: 10px;
|
|
|
|
padding-bottom: 40px;
|
|
|
|
margin-top: 10px;
|
|
|
|
border-top: 1px solid #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
.landing-footer .row {
|
|
|
|
max-width: 100%;
|
2013-10-02 04:28:24 +00:00
|
|
|
}
|
|
|
|
|
2013-10-03 17:54:59 +00:00
|
|
|
.landing-footer .copyright-container {
|
|
|
|
font-size: 11px;
|
|
|
|
color: black;
|
|
|
|
text-align: right;
|
|
|
|
padding-right: 30px;
|
|
|
|
padding-top: 20px;
|
2013-10-02 04:28:24 +00:00
|
|
|
}
|
|
|
|
|
2013-10-03 17:54:59 +00:00
|
|
|
.landing-footer .copyright-container a {
|
|
|
|
display: block;
|
2013-10-02 04:28:24 +00:00
|
|
|
}
|
|
|
|
|
2013-10-03 17:54:59 +00:00
|
|
|
.landing-footer .dt-logo {
|
|
|
|
vertical-align: center;
|
|
|
|
max-width: 150px;
|
2013-10-01 01:11:30 +00:00
|
|
|
}
|
|
|
|
|
2013-10-03 17:54:59 +00:00
|
|
|
.landing-footer .copyright {
|
|
|
|
font-size: 11px;
|
|
|
|
color: black;
|
2013-10-01 01:11:30 +00:00
|
|
|
}
|
|
|
|
|
2013-10-03 17:54:59 +00:00
|
|
|
.landing-footer ul {
|
2013-10-01 01:11:30 +00:00
|
|
|
list-style-type: none;
|
|
|
|
margin: 0px;
|
|
|
|
padding-left: 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-03 17:54:59 +00:00
|
|
|
.landing-footer li {
|
2013-10-01 01:11:30 +00:00
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-03 17:54:59 +00:00
|
|
|
.user-welcome {
|
|
|
|
text-align: center;
|
2013-10-01 21:44:13 +00:00
|
|
|
}
|
|
|
|
|
2013-09-27 23:21:54 +00:00
|
|
|
#repoSearch {
|
2013-10-13 20:13:50 +00:00
|
|
|
width: 300px;
|
2013-09-27 23:21:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.repo-mini-listing {
|
|
|
|
margin: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-mini-listing i {
|
|
|
|
color: #aaa;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-mini-listing .description {
|
|
|
|
margin-left: 20px;
|
|
|
|
color: #aaa;
|
|
|
|
font-size: 85%;
|
|
|
|
padding-top: 4px;
|
|
|
|
border-top: 1px solid #eee;
|
|
|
|
margin-top: 4px;
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2013-09-28 05:23:00 +00:00
|
|
|
|
2013-11-02 01:48:10 +00:00
|
|
|
.entity-mini-listing {
|
2013-09-28 05:23:00 +00:00
|
|
|
margin: 2px;
|
|
|
|
}
|
|
|
|
|
2013-11-02 01:48:10 +00:00
|
|
|
.entity-mini-listing i {
|
2013-09-28 05:23:00 +00:00
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
2013-11-02 01:48:10 +00:00
|
|
|
.entity-mini-listing .warning {
|
|
|
|
margin-top: 6px;
|
|
|
|
font-size: 10px;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
2013-09-30 23:08:24 +00:00
|
|
|
.editable {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2013-09-26 22:48:22 +00:00
|
|
|
.editable i {
|
2013-09-30 23:08:24 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
right: -40px;
|
|
|
|
|
2013-09-26 21:59:20 +00:00
|
|
|
opacity: 0.2;
|
|
|
|
font-size: 85%;
|
|
|
|
display: inline-block;
|
|
|
|
|
2013-10-01 04:41:46 +00:00
|
|
|
-moz-transition: opacity 500ms ease-in-out;
|
|
|
|
-webkit-transition: opacity 500ms ease-in-out;
|
|
|
|
-o-transition: opacity 500ms ease-in-out;
|
|
|
|
-ms-transition: opacity 500ms ease-in-out;
|
2013-09-26 21:59:20 +00:00
|
|
|
transition: opacity 500ms ease-in-out;
|
|
|
|
}
|
|
|
|
|
2013-09-26 22:48:22 +00:00
|
|
|
.noteditable i {
|
2013-09-26 21:59:20 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-09-27 20:12:51 +00:00
|
|
|
p.editable {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2013-11-05 00:59:28 +00:00
|
|
|
p.editable .empty {
|
2013-09-26 21:59:20 +00:00
|
|
|
display: inline-block;
|
|
|
|
color: #aaa;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.editable:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2013-09-26 22:48:22 +00:00
|
|
|
p.editable:hover i {
|
2013-09-26 21:59:20 +00:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag-dropdown {
|
|
|
|
display: inline-block;
|
2013-10-02 05:05:36 +00:00
|
|
|
font-size: 1.15em;
|
|
|
|
}
|
|
|
|
|
2013-10-11 00:43:37 +00:00
|
|
|
.right-title {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
padding: 4px;
|
|
|
|
font-size: 12px;
|
|
|
|
color: #aaa;
|
2013-10-02 05:05:36 +00:00
|
|
|
}
|
|
|
|
|
2013-10-11 00:43:37 +00:00
|
|
|
.tag-dropdown .tag-count {
|
2013-10-02 05:05:36 +00:00
|
|
|
display: inline-block;
|
2013-10-11 00:43:37 +00:00
|
|
|
margin-left: 4px;
|
|
|
|
margin-right: 6px;
|
|
|
|
padding-right: 10px;
|
|
|
|
border-right: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag-dropdown a {
|
|
|
|
color: black;
|
2013-09-26 21:59:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-body textarea {
|
|
|
|
width: 100%;
|
|
|
|
height: 150px;
|
|
|
|
border: 0px;
|
2013-09-26 22:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.repo .header {
|
|
|
|
margin-bottom: 10px;
|
2013-09-26 22:21:29 +00:00
|
|
|
position: relative;
|
2013-09-26 22:10:09 +00:00
|
|
|
}
|
|
|
|
|
2013-09-27 19:48:54 +00:00
|
|
|
.repo .header .back {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
2013-10-22 05:26:14 +00:00
|
|
|
.repo .header .repo-circle {
|
2013-09-28 21:11:10 +00:00
|
|
|
line-height: 38px;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2013-09-26 22:10:09 +00:00
|
|
|
.repo .description {
|
2013-10-26 20:03:11 +00:00
|
|
|
margin-top: 10px;
|
2013-09-26 22:10:09 +00:00
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
|
2013-10-02 04:43:59 +00:00
|
|
|
.repo .empty-message {
|
|
|
|
padding: 6px;
|
|
|
|
font-size: 1.8em;
|
|
|
|
color: #ccc;
|
|
|
|
}
|
|
|
|
|
2013-09-26 22:10:09 +00:00
|
|
|
.repo dl.dl-horizontal dt {
|
2013-10-17 18:46:23 +00:00
|
|
|
width: 80px;
|
|
|
|
padding-right: 10px;
|
2013-09-26 22:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.repo dl.dl-horizontal dd {
|
|
|
|
margin-left: 80px;
|
|
|
|
}
|
2013-09-26 22:21:29 +00:00
|
|
|
|
2013-10-18 21:59:26 +00:00
|
|
|
.repo dl.dl-normal dd {
|
|
|
|
padding-left: 14px;
|
|
|
|
margin-bottom: 10px;
|
2013-10-19 02:28:46 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2013-10-18 21:59:26 +00:00
|
|
|
}
|
|
|
|
|
2013-09-26 22:21:29 +00:00
|
|
|
.repo .header h3 {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2013-10-26 20:03:11 +00:00
|
|
|
.repo .status-boxes {
|
|
|
|
float: right;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .status-boxes .status-box {
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
border: 1px solid #eee;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .status-boxes .status-box .title {
|
|
|
|
padding: 4px;
|
|
|
|
display: inline-block;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .status-boxes .status-box .title i {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .status-boxes .status-box .count {
|
|
|
|
display: inline-block;
|
|
|
|
background-image: linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);
|
|
|
|
padding: 4px;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
transform: scaleX(0);
|
|
|
|
-webkit-transform: scaleX(0);
|
|
|
|
-moz-transform: scaleX(0);
|
|
|
|
|
|
|
|
transition: transform 500ms ease-in-out;
|
|
|
|
-webkit-transition: -webkit-transform 500ms ease-in-out;
|
|
|
|
-moz-transition: -moz-transform 500ms ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .status-boxes .status-box .count.visible {
|
|
|
|
transform: scaleX(1);
|
|
|
|
-webkit-transform: scaleX(1);
|
|
|
|
-moz-transform: scaleX(1);
|
|
|
|
}
|
|
|
|
|
2013-09-26 22:21:29 +00:00
|
|
|
.repo .pull-command {
|
|
|
|
float: right;
|
|
|
|
display: inline-block;
|
2013-10-26 20:03:11 +00:00
|
|
|
font-size: 0.8em;
|
2013-09-27 20:28:21 +00:00
|
|
|
position: relative;
|
2013-10-26 20:03:11 +00:00
|
|
|
margin-top: 30px;
|
|
|
|
margin-right: 26px;
|
2013-09-26 22:21:29 +00:00
|
|
|
}
|
|
|
|
|
2013-10-26 20:03:11 +00:00
|
|
|
.repo .pull-container {
|
2013-09-27 20:12:51 +00:00
|
|
|
display: inline-block;
|
|
|
|
width: 300px;
|
2013-10-26 20:03:11 +00:00
|
|
|
margin-left: 10px;
|
2013-09-27 20:12:51 +00:00
|
|
|
margin-right: 10px;
|
|
|
|
vertical-align: middle;
|
2013-09-26 22:21:29 +00:00
|
|
|
}
|
|
|
|
|
2013-10-26 20:03:11 +00:00
|
|
|
.repo .pull-container input {
|
2013-09-27 20:12:51 +00:00
|
|
|
cursor: default;
|
|
|
|
background: white;
|
2013-09-26 22:21:29 +00:00
|
|
|
color: #666;
|
|
|
|
padding: 4px;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
width: 300px;
|
2013-09-27 17:49:50 +00:00
|
|
|
}
|
|
|
|
|
2013-09-27 20:12:51 +00:00
|
|
|
.repo #copyClipboard {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2013-09-27 20:28:21 +00:00
|
|
|
.repo #copyClipboard.zeroclipboard-is-hover {
|
|
|
|
background: #428bca;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2013-10-17 18:46:23 +00:00
|
|
|
.repo #clipboardCopied.hovering {
|
2013-09-27 20:28:21 +00:00
|
|
|
position: absolute;
|
|
|
|
right: 0px;
|
|
|
|
top: 40px;
|
2013-10-17 18:46:23 +00:00
|
|
|
}
|
2013-09-27 20:28:21 +00:00
|
|
|
|
2013-10-19 02:28:46 +00:00
|
|
|
.repo-image-view .id-container {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-image-view .id-container input {
|
|
|
|
background: #fefefe;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-image-view .id-container .input-group {
|
|
|
|
width: 542px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-image-view #clipboardCopied {
|
|
|
|
position: relative;
|
|
|
|
top: -14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-image-view .changes-container .change-side-controls {
|
|
|
|
float: right;
|
|
|
|
clear: both;
|
2013-10-19 23:46:30 +00:00
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
2013-10-19 02:28:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.repo-image-view .changes-container .filter-input {
|
|
|
|
display: inline-block;
|
2013-10-19 23:46:30 +00:00
|
|
|
width: 400px;
|
2013-10-19 02:28:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.repo-image-view .changes-container .result-count {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 10px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #888;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-image-view .changes-container .changes-list {
|
|
|
|
padding: 10px;
|
|
|
|
margin-top: 28px;
|
|
|
|
}
|
|
|
|
|
2013-10-17 18:46:23 +00:00
|
|
|
.repo #clipboardCopied {
|
2013-09-27 20:28:21 +00:00
|
|
|
font-size: 0.8em;
|
2013-10-17 18:46:23 +00:00
|
|
|
display: inline-block;
|
|
|
|
margin-right: 10px;
|
2013-09-27 20:28:21 +00:00
|
|
|
|
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
padding: 6px;
|
|
|
|
border-radius: 4px;
|
2013-10-22 04:40:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.repo #clipboardCopied.animated {
|
2013-10-01 04:41:46 +00:00
|
|
|
-webkit-animation: fadeOut 4s ease-in-out 0s 1 forwards;
|
|
|
|
-moz-animation: fadeOut 4s ease-in-out 0s 1 forwards;
|
|
|
|
-ms-animation: fadeOut 4s ease-in-out 0s 1 forwards;
|
|
|
|
-o-animation: fadeOut 4s ease-in-out 0s 1 forwards;
|
|
|
|
animation: fadeOut 4s ease-in-out 0s 1 forward;
|
2013-09-27 20:28:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }
|
|
|
|
@-moz-keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }
|
|
|
|
@-ms-keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }
|
|
|
|
@-o-keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }
|
|
|
|
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }
|
|
|
|
|
2013-09-27 19:48:54 +00:00
|
|
|
.repo .settings-cog {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .settings-cog a {
|
|
|
|
text-decoration: none !important;
|
|
|
|
}
|
|
|
|
|
2013-10-02 04:28:24 +00:00
|
|
|
.repo-list {
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
2013-09-27 23:21:54 +00:00
|
|
|
|
2013-09-27 17:49:50 +00:00
|
|
|
.repo-listing {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
padding: 10px;
|
2013-10-03 17:54:59 +00:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: normal;
|
2013-09-27 17:49:50 +00:00
|
|
|
}
|
|
|
|
|
2013-10-02 04:28:24 +00:00
|
|
|
.repo-listing:last-child {
|
|
|
|
border-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.landing .repo-listing {
|
|
|
|
border-bottom: 0px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
2013-09-27 17:49:50 +00:00
|
|
|
.repo-listing a {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-listing i {
|
|
|
|
color: #999;
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-listing .description {
|
2013-10-22 05:26:14 +00:00
|
|
|
padding-left: 44px;
|
2013-09-27 17:49:50 +00:00
|
|
|
}
|
2013-09-27 19:26:16 +00:00
|
|
|
|
2013-11-02 01:48:10 +00:00
|
|
|
.repo-admin .entity-search input {
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
|
2013-10-17 18:46:23 +00:00
|
|
|
.repo-admin .token-dialog-body .well {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-admin .token-view {
|
|
|
|
background: transparent;
|
|
|
|
display: block;
|
|
|
|
border: 0px transparent;
|
|
|
|
font-size: 12px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2013-09-27 19:26:16 +00:00
|
|
|
.repo-admin .panel {
|
|
|
|
display: inline-block;
|
2013-10-01 18:14:30 +00:00
|
|
|
width: 620px;
|
2013-09-27 19:26:16 +00:00
|
|
|
}
|
|
|
|
|
2013-11-05 20:15:26 +00:00
|
|
|
.repo-admin .user i.fa-user {
|
2013-11-02 01:48:10 +00:00
|
|
|
margin-left: 2px;
|
|
|
|
margin-right: 7px;
|
|
|
|
}
|
|
|
|
|
2013-11-05 20:15:26 +00:00
|
|
|
.repo-admin .team i.fa-group {
|
2013-11-02 01:48:10 +00:00
|
|
|
margin-right: 4px;
|
2013-09-27 19:26:16 +00:00
|
|
|
}
|
|
|
|
|
2013-11-02 01:48:10 +00:00
|
|
|
.repo-admin .entity {
|
2013-09-27 19:26:16 +00:00
|
|
|
font-size: 1.2em;
|
|
|
|
min-width: 300px;
|
|
|
|
}
|
|
|
|
|
2013-11-05 20:15:26 +00:00
|
|
|
.repo-admin .entity .popover {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-admin .entity i.fa-exclamation-triangle {
|
|
|
|
color: #c09853;
|
|
|
|
float: right;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
2013-10-17 18:46:23 +00:00
|
|
|
.repo-admin .token a {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2013-10-26 20:03:11 +00:00
|
|
|
.repo .build-info {
|
|
|
|
padding: 10px;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .build-info .progress {
|
|
|
|
margin: 0px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .section {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
border-bottom: 1px solid #eee;
|
2013-10-11 16:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.repo .description p:last-child {
|
2013-09-30 23:08:24 +00:00
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
2013-09-27 21:01:45 +00:00
|
|
|
.repo thead td {
|
2013-09-27 19:26:16 +00:00
|
|
|
padding: 4px;
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
|
2013-09-27 21:01:45 +00:00
|
|
|
.repo td {
|
2013-09-27 19:26:16 +00:00
|
|
|
padding: 6px;
|
2013-09-27 21:01:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.repo .images {
|
|
|
|
margin: 10px;
|
2013-09-27 23:21:54 +00:00
|
|
|
}
|
|
|
|
|
2013-09-30 23:08:24 +00:00
|
|
|
.repo .images .image-id {
|
|
|
|
font-size: 85%;
|
|
|
|
max-width: 100px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .images p {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-19 02:28:46 +00:00
|
|
|
.repo .small-changes-container:before {
|
2013-10-18 21:59:26 +00:00
|
|
|
content: "File Changes: ";
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
float: left;
|
|
|
|
padding-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .changes-count-container {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .change-count {
|
|
|
|
font-size: 18px;
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2013-10-24 21:41:37 +00:00
|
|
|
.repo .changes-container i.fa-plus-square {
|
2013-10-18 21:59:26 +00:00
|
|
|
color: rgb(73, 209, 73);
|
|
|
|
}
|
|
|
|
|
2013-10-24 21:41:37 +00:00
|
|
|
.repo .changes-container i.fa-minus-square {
|
2013-10-18 21:59:26 +00:00
|
|
|
color: rgb(209, 73, 73);
|
|
|
|
}
|
|
|
|
|
2013-10-24 21:41:37 +00:00
|
|
|
.repo .changes-container i.fa-pencil-square {
|
2013-10-18 21:59:26 +00:00
|
|
|
color: rgb(73, 100, 209);
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .change-count:last-child {
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .change-count i {
|
|
|
|
font-size: 20px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .change i {
|
|
|
|
float: right;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .more-changes {
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo #collapseChanges .well {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo #collapseChanges .change {
|
|
|
|
overflow: hidden;
|
|
|
|
font-size: 14px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2013-10-23 02:39:36 +00:00
|
|
|
.repo .download-cfg {
|
|
|
|
float: left;
|
|
|
|
padding-top: 6px;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo .download-cfg .icon-download {
|
|
|
|
margin-right: 10px;
|
|
|
|
font-size: 25px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2013-09-27 22:15:31 +00:00
|
|
|
.navbar-nav > li > .user-dropdown {
|
|
|
|
padding-top: 9px;
|
|
|
|
padding-bottom: 9px;
|
|
|
|
}
|
|
|
|
|
2013-10-13 20:13:50 +00:00
|
|
|
.navbar-brand {
|
|
|
|
padding: 12px 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-brand img {
|
|
|
|
height: 25px;
|
|
|
|
}
|
|
|
|
|
2013-09-27 22:15:31 +00:00
|
|
|
.user-dropdown > img {
|
|
|
|
padding-right: 6px;
|
2013-09-27 23:24:30 +00:00
|
|
|
}
|
|
|
|
|
2013-09-28 05:23:00 +00:00
|
|
|
.delete-ui {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.delete-ui i {
|
|
|
|
cursor: pointer;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.delete-ui .delete-ui-button {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
color: white;
|
|
|
|
width: 0px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
2013-10-01 04:41:46 +00:00
|
|
|
-moz-transition: width 500ms ease-in-out;
|
|
|
|
-webkit-transition: width 500ms ease-in-out;
|
|
|
|
-o-transition: width 500ms ease-in-out;
|
|
|
|
-ms-transition: width 500ms ease-in-out;
|
2013-09-28 05:23:00 +00:00
|
|
|
transition: width 500ms ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.delete-ui .delete-ui-button button {
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.delete-ui:focus i {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.delete-ui:focus .delete-ui-button {
|
2013-11-04 20:31:38 +00:00
|
|
|
width: 60px;
|
2013-09-28 05:23:00 +00:00
|
|
|
}
|
2013-09-27 23:24:30 +00:00
|
|
|
|
2013-10-01 18:14:30 +00:00
|
|
|
.repo-admin .repo-delete {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-admin .repo-delete button {
|
|
|
|
font-size: 125%;
|
|
|
|
}
|
|
|
|
|
2013-09-28 21:11:10 +00:00
|
|
|
.repo-admin .repo-access-state .state-icon {
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-admin .repo-access-state .state-icon i {
|
|
|
|
font-size: 46px;
|
|
|
|
width: 54px;
|
|
|
|
height: 54px;
|
|
|
|
line-height: 54px;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-admin .repo-access-state {
|
|
|
|
text-align: center;
|
2013-10-01 18:14:30 +00:00
|
|
|
width: 580px;
|
2013-09-28 21:11:10 +00:00
|
|
|
}
|
|
|
|
|
2013-10-24 21:41:37 +00:00
|
|
|
.repo-admin .repo-access-state .state-icon i.fa-lock {
|
2013-09-28 21:11:10 +00:00
|
|
|
background: rgb(253, 191, 191);
|
|
|
|
}
|
|
|
|
|
2013-10-26 20:03:11 +00:00
|
|
|
.repo-admin .repo-access-state .state-icon i.fa-unlock {
|
2013-09-28 21:11:10 +00:00
|
|
|
background: rgb(170, 236, 170);
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-admin .change-access {
|
|
|
|
margin-top: 20px;
|
|
|
|
padding-top: 20px;
|
|
|
|
border-top: 1px solid #eee;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-admin .change-access .alert {
|
|
|
|
color: black;
|
|
|
|
background: white;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-admin .change-access .alert .alert-content {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.repo-admin .change-access:hover .alert {
|
|
|
|
background: inherit;
|
|
|
|
border: inherit;
|
|
|
|
}
|
|
|
|
|
2013-10-02 18:50:02 +00:00
|
|
|
.user-admin .panel-plan {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-admin .plan-description {
|
|
|
|
font-size: 1.2em;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-admin .used-description {
|
|
|
|
font-size: 1.2em;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2013-10-10 17:44:34 +00:00
|
|
|
.user-admin .form-change-pw input {
|
|
|
|
margin-top: 12px;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
2013-10-19 23:46:30 +00:00
|
|
|
|
2013-10-11 05:06:04 +00:00
|
|
|
#image-history-container {
|
|
|
|
overflow: hidden;
|
2013-10-12 01:28:02 +00:00
|
|
|
min-height: 400px;
|
2013-10-11 05:06:04 +00:00
|
|
|
}
|
|
|
|
|
2013-10-10 04:40:18 +00:00
|
|
|
#image-history-container .node circle {
|
|
|
|
cursor: pointer;
|
|
|
|
fill: #fff;
|
|
|
|
stroke-width: 1.5px;
|
|
|
|
stroke: #ccc;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2013-10-10 21:13:42 +00:00
|
|
|
#image-history-container .node circle.highlighted {
|
2013-10-10 04:40:18 +00:00
|
|
|
stroke: steelblue;
|
|
|
|
}
|
|
|
|
|
2013-10-10 21:13:42 +00:00
|
|
|
#image-history-container .node circle.current {
|
2013-10-10 04:40:18 +00:00
|
|
|
fill: steelblue;
|
|
|
|
stroke-width: 2.5px;
|
|
|
|
}
|
|
|
|
|
2013-10-11 00:43:37 +00:00
|
|
|
#image-history-container .node text.current {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2013-10-11 05:06:04 +00:00
|
|
|
#image-history-container .node text.collapsed {
|
|
|
|
fill: gray;
|
|
|
|
}
|
|
|
|
|
2013-10-10 04:40:18 +00:00
|
|
|
#image-history-container .node text {
|
2013-10-10 06:09:17 +00:00
|
|
|
font-size: 15px;
|
2013-10-10 04:40:18 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#image-history-container path.link {
|
|
|
|
fill: none;
|
|
|
|
stroke: #ccc;
|
|
|
|
stroke-width: 1.5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#image-history-container path.link.highlighted {
|
|
|
|
stroke: steelblue;
|
|
|
|
}
|
|
|
|
|
2013-10-10 06:09:17 +00:00
|
|
|
#image-history-container .tags {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#image-history-container .tags .tag {
|
|
|
|
border-radius: 10px;
|
|
|
|
margin-right: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2013-10-19 23:46:30 +00:00
|
|
|
#changes-tree-container {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#changes-tree-container .node rect {
|
|
|
|
cursor: pointer;
|
|
|
|
fill: #fff;
|
|
|
|
fill-opacity: 1;
|
|
|
|
stroke: #fff;
|
|
|
|
stroke-width: 1.5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#changes-tree-container .node .change-icon {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#changes-tree-container .node text {
|
|
|
|
font: 12px sans-serif;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2013-10-19 23:50:21 +00:00
|
|
|
#changes-tree-container .node.changed text {
|
|
|
|
fill: rgb(73, 100, 209);
|
|
|
|
}
|
|
|
|
|
2013-10-19 23:46:30 +00:00
|
|
|
#changes-tree-container .node.added text {
|
|
|
|
fill: rgb(32, 163, 32);
|
|
|
|
}
|
|
|
|
|
|
|
|
#changes-tree-container .node.removed text {
|
|
|
|
text-decoration: line-through;
|
|
|
|
fill: rgb(209, 73, 73);
|
|
|
|
}
|
|
|
|
|
|
|
|
#changes-tree-container path.link {
|
|
|
|
fill: none;
|
|
|
|
stroke: #9ecae1;
|
|
|
|
stroke-width: 1.5px;
|
2013-10-10 06:09:17 +00:00
|
|
|
}
|
2013-10-10 04:40:18 +00:00
|
|
|
|
2013-11-06 22:30:20 +00:00
|
|
|
#repository-usage-chart {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 200px;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#repository-usage-chart .count-text {
|
|
|
|
font-size: 22px;
|
|
|
|
}
|
|
|
|
|
2013-11-06 22:59:16 +00:00
|
|
|
#repository-usage-chart.limit-at path.arc-0 {
|
2013-11-06 22:30:20 +00:00
|
|
|
fill: #c09853;
|
|
|
|
}
|
|
|
|
|
2013-11-06 22:59:16 +00:00
|
|
|
#repository-usage-chart.limit-over path.arc-0 {
|
2013-11-06 22:30:20 +00:00
|
|
|
fill: #b94a48;
|
|
|
|
}
|
|
|
|
|
2013-11-06 22:59:16 +00:00
|
|
|
#repository-usage-chart.limit-near path.arc-0 {
|
|
|
|
fill: #468847;
|
|
|
|
}
|
|
|
|
|
|
|
|
#repository-usage-chart.limit-over path.arc-1 {
|
2013-11-06 22:30:20 +00:00
|
|
|
fill: #fcf8e3;
|
|
|
|
}
|
|
|
|
|
2013-11-06 22:59:16 +00:00
|
|
|
#repository-usage-chart.limit-at path.arc-1 {
|
2013-11-06 22:30:20 +00:00
|
|
|
fill: #f2dede;
|
|
|
|
}
|
|
|
|
|
2013-11-06 22:59:16 +00:00
|
|
|
#repository-usage-chart.limit-near path.arc-1 {
|
|
|
|
fill: #dff0d8;
|
|
|
|
}
|
|
|
|
|
2013-11-06 22:30:20 +00:00
|
|
|
.plan-manager-element .usage-caption {
|
|
|
|
display: inline-block;
|
|
|
|
color: #aaa;
|
|
|
|
font-size: 26px;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-30 23:08:24 +00:00
|
|
|
/* Overrides for the markdown editor. */
|
|
|
|
|
|
|
|
.wmd-panel .btn-toolbar {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wmd-panel textarea {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wmd-panel.wmd-preview:before {
|
|
|
|
display: inline-block;
|
|
|
|
content: "Preview";
|
|
|
|
background: #eee;
|
|
|
|
padding: 4px;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
right: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wmd-panel.wmd-preview {
|
|
|
|
position: relative;
|
|
|
|
border: 1px solid #eee;
|
|
|
|
margin-top: 10px;
|
|
|
|
padding: 10px;
|
2013-10-24 21:41:55 +00:00
|
|
|
min-height: 50px;
|
2013-09-30 23:08:24 +00:00
|
|
|
}
|
2013-09-28 21:11:10 +00:00
|
|
|
|
2013-11-04 19:56:54 +00:00
|
|
|
.team-view .panel {
|
|
|
|
display: inline-block;
|
|
|
|
width: 620px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.team-view .entity {
|
|
|
|
font-size: 1.2em;
|
2013-11-04 20:31:38 +00:00
|
|
|
min-width: 510px;
|
2013-11-04 19:56:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.team-view .entity i {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
2013-11-04 20:31:38 +00:00
|
|
|
.team-view .entity-search {
|
|
|
|
margin-top: 10px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2013-11-04 19:56:54 +00:00
|
|
|
|
2013-11-04 20:31:38 +00:00
|
|
|
.team-view .delete-ui {
|
|
|
|
display: inline-block;
|
|
|
|
width: 78px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.team-view .delete-ui i {
|
|
|
|
margin-top: 8px;
|
|
|
|
float: right;
|
|
|
|
}
|
2013-11-04 19:56:54 +00:00
|
|
|
|
2013-11-05 00:11:13 +00:00
|
|
|
.org-view .team-listing {
|
2013-11-05 03:58:21 +00:00
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.org-view .header-col {
|
|
|
|
color: #444;
|
2013-11-05 22:20:43 +00:00
|
|
|
margin-bottom: 10px;
|
2013-11-05 03:58:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.org-view .header-col dd {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.org-view .header-col .info-icon {
|
|
|
|
float: none;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2013-11-05 22:20:43 +00:00
|
|
|
.org-view .team-listing .control-col button.btn-danger {
|
|
|
|
margin-left: 10px;
|
2013-11-05 19:47:46 +00:00
|
|
|
}
|
|
|
|
|
2013-11-05 00:36:56 +00:00
|
|
|
.org-view .team-listing i {
|
|
|
|
margin-right: 10px;
|
2013-11-05 00:11:13 +00:00
|
|
|
}
|
|
|
|
|
2013-11-05 22:20:43 +00:00
|
|
|
.org-view .highlight .team-title {
|
|
|
|
animation: highlighttemp 1s 2;
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
animation-direction: alternate;
|
|
|
|
|
|
|
|
-moz-animation: highlighttemp 1s 2;
|
|
|
|
-moz-animation-timing-function: ease-in-out;
|
|
|
|
-moz-animation-direction: alternate;
|
|
|
|
|
|
|
|
-webkit-animation: highlighttemp 1s 2;
|
|
|
|
-webkit-animation-timing-function: ease-in-out;
|
|
|
|
-webkit-animation-direction: alternate;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-moz-keyframes highlighttemp {
|
|
|
|
0% { background-color: white; }
|
|
|
|
100% { background-color: rgba(92, 184, 92, 0.36); }
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes highlighttemp {
|
|
|
|
0% { background-color: white; }
|
|
|
|
100% { background-color: rgba(92, 184, 92, 0.36); }
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes highlighttemp {
|
|
|
|
0% { background-color: white; }
|
|
|
|
100% { background-color: rgba(92, 184, 92, 0.36); }
|
|
|
|
}
|
|
|
|
|
2013-11-05 00:11:13 +00:00
|
|
|
.org-view .team-title {
|
|
|
|
font-size: 20px;
|
2013-11-05 00:36:56 +00:00
|
|
|
text-transform: capitalize;
|
2013-11-05 22:20:43 +00:00
|
|
|
padding: 4px;
|
2013-11-05 00:11:13 +00:00
|
|
|
}
|
|
|
|
|
2013-11-05 01:17:58 +00:00
|
|
|
.org-view .team-listing .team-description {
|
|
|
|
margin-top: 6px;
|
2013-11-05 22:20:43 +00:00
|
|
|
margin-left: 41px;
|
2013-11-05 01:17:58 +00:00
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2013-11-05 22:20:43 +00:00
|
|
|
.org-view #create-team-box {
|
|
|
|
border: none;
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
2013-11-07 00:06:59 +00:00
|
|
|
.org-admin .team-link {
|
|
|
|
display: inline-block;
|
|
|
|
text-transform: capitalize;
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.org-admin #members table td {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.org-admin #members table i {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.org-admin #members .side-controls {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.org-admin #members .result-count {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.org-admin #members .filter-input {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2013-11-06 22:59:16 +00:00
|
|
|
.plan-manager-element .plans-table thead td {
|
2013-11-05 23:39:27 +00:00
|
|
|
color: #aaa;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2013-11-06 22:59:16 +00:00
|
|
|
.plan-manager-element .plans-table td {
|
2013-11-05 23:39:27 +00:00
|
|
|
padding: 10px;
|
|
|
|
font-size: 16px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2013-11-06 22:59:16 +00:00
|
|
|
.plan-manager-element .plans-table td.controls {
|
2013-11-05 23:39:27 +00:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2013-11-06 22:59:16 +00:00
|
|
|
.plan-manager-element .plans-table .plan-price {
|
2013-11-05 23:39:27 +00:00
|
|
|
font-size: 16px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
2013-09-27 23:24:30 +00:00
|
|
|
/* Overrides for typeahead to work with bootstrap 3. */
|
2013-09-27 23:21:54 +00:00
|
|
|
|
|
|
|
.twitter-typeahead .tt-query,
|
|
|
|
.twitter-typeahead .tt-hint {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tt-dropdown-menu {
|
|
|
|
min-width: 160px;
|
|
|
|
margin-top: 2px;
|
|
|
|
padding: 5px 0;
|
|
|
|
background-color: #fff;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border: 1px solid rgba(0,0,0,.2);
|
|
|
|
*border-right-width: 2px;
|
|
|
|
*border-bottom-width: 2px;
|
|
|
|
-webkit-border-radius: 6px;
|
|
|
|
-moz-border-radius: 6px;
|
|
|
|
border-radius: 6px;
|
|
|
|
-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
|
|
|
|
-moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
|
|
|
|
box-shadow: 0 5px 10px rgba(0,0,0,.2);
|
|
|
|
-webkit-background-clip: padding-box;
|
|
|
|
-moz-background-clip: padding;
|
|
|
|
background-clip: padding-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tt-suggestion {
|
|
|
|
display: block;
|
|
|
|
padding: 3px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tt-suggestion.tt-is-under-cursor {
|
|
|
|
color: #fff;
|
|
|
|
background-color: #0081c2;
|
|
|
|
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
|
|
|
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
|
|
|
|
background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
|
|
|
|
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
|
|
|
|
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)
|
|
|
|
}
|
|
|
|
|
|
|
|
.tt-suggestion.tt-is-under-cursor a {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tt-suggestion p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.twitter-typeahead .tt-hint {
|
|
|
|
display: block;
|
|
|
|
height: 34px;
|
|
|
|
padding: 5px 12px;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.428571429;
|
|
|
|
border: 1px solid transparent;
|
2013-10-08 15:55:57 +00:00
|
|
|
width: 100%;
|
2013-09-27 23:24:30 +00:00
|
|
|
}
|
2013-10-02 04:46:11 +00:00
|
|
|
|
|
|
|
/** Fix for bootstrap dialogs that are broken. */
|
|
|
|
|
|
|
|
.modal-backdrop.in {
|
|
|
|
opacity: 0.5 !important;
|
2013-10-10 04:40:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** D3 tooltip styling */
|
|
|
|
|
|
|
|
.d3-tip {
|
|
|
|
line-height: 1;
|
|
|
|
padding: 12px;
|
|
|
|
background: rgba(0, 0, 0, 0.8);
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 2px;
|
|
|
|
max-width: 500px;
|
2013-10-11 05:06:04 +00:00
|
|
|
z-index: 9999999;
|
2013-10-10 04:40:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Creates a small triangle extender for the tooltip */
|
|
|
|
.d3-tip:after {
|
2013-10-10 21:13:42 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
display: inline;
|
|
|
|
font-size: 10px;
|
|
|
|
width: 100%;
|
|
|
|
line-height: 1;
|
|
|
|
color: rgba(0, 0, 0, 0.8);
|
|
|
|
position: absolute;
|
2013-10-10 04:40:18 +00:00
|
|
|
}
|
|
|
|
|
2013-10-10 21:13:42 +00:00
|
|
|
/* Nrthward tooltips */
|
2013-10-10 04:40:18 +00:00
|
|
|
.d3-tip.n:after {
|
2013-10-10 21:13:42 +00:00
|
|
|
content: "\25BC";
|
|
|
|
margin: -1px 0 0 0;
|
|
|
|
top: 100%;
|
|
|
|
left: 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Eastward tooltips */
|
|
|
|
.d3-tip.e:after {
|
|
|
|
content: "\25C0";
|
|
|
|
margin: -4px 0 0 0;
|
|
|
|
top: 50%;
|
|
|
|
left: -8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Southward tooltips */
|
|
|
|
.d3-tip.s:after {
|
|
|
|
content: "\25B2";
|
|
|
|
margin: 0 0 1px 0;
|
|
|
|
top: -8px;
|
|
|
|
left: 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Westward tooltips */
|
|
|
|
.d3-tip.w:after {
|
|
|
|
content: "\25B6";
|
|
|
|
margin: -4px 0 0 -1px;
|
|
|
|
top: 50%;
|
|
|
|
left: 100%;
|
2013-10-10 04:40:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.d3-tip .full-id {
|
|
|
|
font-size: 11px;
|
|
|
|
color: #ddd;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.d3-tip .created {
|
|
|
|
font-size: 12px;
|
|
|
|
color: white;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.d3-tip .comment {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 6px;
|
2013-10-12 17:14:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.privacy-policy dd,
|
|
|
|
.tos dd {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tos li {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tos ul {
|
|
|
|
margin-top: 10px;
|
2013-10-14 21:50:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-signin input {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-signin {
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.social-alternate {
|
|
|
|
color: #777;
|
|
|
|
font-size: 3em;
|
|
|
|
margin-left: 43px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.social-alternate .inner-text {
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
color: white;
|
|
|
|
left: -42px;
|
|
|
|
top: -9px;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: .4em;
|
2013-10-02 04:46:11 +00:00
|
|
|
}
|