debian-mirror-gitlab/app/assets/stylesheets/pages/projects.scss

976 lines
14 KiB
SCSS
Raw Normal View History

2015-10-24 18:46:33 +05:30
.alert_holder {
margin: -16px;
.alert-link {
font-weight: normal;
}
}
2016-06-22 15:30:34 +05:30
2014-09-02 18:07:02 +05:30
.new_project,
.edit-project {
2017-08-17 22:00:37 +05:30
.sharing-and-permissions {
.header {
padding-top: $gl-vert-padding;
}
.label-light {
margin-bottom: 0;
}
.help-block {
margin-top: 0;
2014-09-02 18:07:02 +05:30
}
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
.form-group {
margin-bottom: 5px;
}
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
& > .form-group {
2016-08-24 12:49:21 +05:30
padding-left: 0;
}
2014-09-02 18:07:02 +05:30
}
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
.help-block {
margin-bottom: 10px;
}
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
.project-path .form-control {
border-radius: $border-radius-base;
}
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
.input-group > div {
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
&:last-child {
padding-right: 0;
}
}
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
@media (max-width: $screen-xs-max) {
.input-group > div {
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
margin-bottom: 14px;
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
&:last-child {
margin-bottom: 0;
2016-06-02 11:05:42 +05:30
}
}
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
fieldset > .form-group:first-child {
padding-right: 0;
}
}
2016-08-24 12:49:21 +05:30
.input-group-addon {
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
&.static-namespace {
height: 35px;
border-radius: 3px;
2017-08-17 22:00:37 +05:30
border: 1px solid $border-color;
2016-08-24 12:49:21 +05:30
}
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
& + .select2 a {
2016-08-24 12:49:21 +05:30
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
}
2016-08-24 12:49:21 +05:30
}
2015-04-26 12:48:37 +05:30
2017-08-17 22:00:37 +05:30
.project-home-panel,
.group-home-panel {
2016-08-24 12:49:21 +05:30
padding-top: 24px;
padding-bottom: 24px;
2016-08-24 12:49:21 +05:30
@media (min-width: $screen-sm-min) {
border-bottom: 1px solid $border-color;
}
2015-04-26 12:48:37 +05:30
2017-08-17 22:00:37 +05:30
.project-avatar,
.group-avatar {
2016-08-24 12:49:21 +05:30
float: none;
2017-08-17 22:00:37 +05:30
margin: 0 auto;
2016-08-24 12:49:21 +05:30
&.identicon {
border-radius: 50%;
}
2016-08-24 12:49:21 +05:30
}
2017-08-17 22:00:37 +05:30
.project-title,
.group-title {
2016-08-24 12:49:21 +05:30
margin-top: 10px;
margin-bottom: 10px;
font-size: 24px;
font-weight: 400;
line-height: 1;
2017-08-17 22:00:37 +05:30
word-wrap: break-word;
2016-08-24 12:49:21 +05:30
.fa {
margin-left: 2px;
font-size: 12px;
vertical-align: middle;
2015-04-26 12:48:37 +05:30
}
2014-09-02 18:07:02 +05:30
}
2015-04-26 12:48:37 +05:30
2017-08-17 22:00:37 +05:30
.project-home-desc,
.group-home-desc {
2016-08-24 12:49:21 +05:30
margin-left: auto;
margin-right: auto;
2017-08-17 22:00:37 +05:30
margin-bottom: 0;
2016-09-29 09:46:39 +05:30
max-width: 700px;
2016-08-24 12:49:21 +05:30
> p {
margin-bottom: 0;
}
}
2015-11-26 14:37:03 +05:30
.notifications-btn {
2016-06-22 15:30:34 +05:30
.fa-bell,
.fa-spinner {
2015-11-26 14:37:03 +05:30
margin-right: 6px;
}
.fa-angle-down {
margin-left: 6px;
}
2015-09-25 12:07:36 +05:30
}
2016-08-24 12:49:21 +05:30
}
2015-09-25 12:07:36 +05:30
2017-08-17 22:00:37 +05:30
.nav > .project-repo-buttons {
margin-top: 0;
}
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
.project-repo-buttons,
.group-buttons {
2016-08-24 12:49:21 +05:30
.btn {
@include btn-gray;
padding: 3px 10px;
2017-08-17 22:00:37 +05:30
&:last-child {
margin-left: 0;
}
2016-08-24 12:49:21 +05:30
.fa {
color: $layout-link-gray;
}
svg {
path {
fill: $layout-link-gray;
}
2016-08-24 12:49:21 +05:30
use {
stroke: $layout-link-gray;
}
}
2016-08-24 12:49:21 +05:30
.fa-caret-down {
margin-left: 3px;
}
2016-08-24 12:49:21 +05:30
}
2017-08-17 22:00:37 +05:30
.project-action-button {
margin: 15px 5px 0;
vertical-align: top;
}
.notification-dropdown .dropdown-menu {
@extend .dropdown-menu-align-right;
}
.download-button {
@media (max-width: $screen-md-max) {
margin-left: 0;
}
2016-08-24 12:49:21 +05:30
}
2016-08-24 12:49:21 +05:30
.count-buttons {
display: inline-block;
vertical-align: top;
2017-08-17 22:00:37 +05:30
margin-top: 15px;
2016-08-24 12:49:21 +05:30
}
2016-08-24 12:49:21 +05:30
.project-clone-holder {
display: inline-block;
2017-08-17 22:00:37 +05:30
margin: 15px 5px 0 0;
2016-08-24 12:49:21 +05:30
input {
2017-08-17 22:00:37 +05:30
height: 28px;
}
2016-08-24 12:49:21 +05:30
}
2016-08-24 12:49:21 +05:30
.count-with-arrow {
display: inline-block;
position: relative;
margin-left: 4px;
2016-08-24 12:49:21 +05:30
.arrow {
2017-08-17 22:00:37 +05:30
&::before {
2016-08-24 12:49:21 +05:30
content: '';
2015-04-26 12:48:37 +05:30
display: inline-block;
2016-08-24 12:49:21 +05:30
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
2016-08-24 12:49:21 +05:30
top: 50%;
left: 0;
margin-top: -6px;
border-width: 7px 5px 7px 0;
2017-08-17 22:00:37 +05:30
border-right-color: $count-arrow-border;
2016-08-24 12:49:21 +05:30
pointer-events: none;
2015-04-26 12:48:37 +05:30
}
2017-08-17 22:00:37 +05:30
&::after {
2016-08-24 12:49:21 +05:30
content: '';
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
top: 50%;
left: 1px;
margin-top: -9px;
border-width: 10px 7px 10px 0;
2017-08-17 22:00:37 +05:30
border-right-color: $white-light;
2016-08-24 12:49:21 +05:30
pointer-events: none;
}
}
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
.count {
@include btn-gray;
display: inline-block;
2017-08-17 22:00:37 +05:30
background: $white-light;
2016-08-24 12:49:21 +05:30
border-radius: 2px;
border-width: 1px;
border-style: solid;
font-size: 13px;
font-weight: 600;
line-height: 13px;
padding: $gl-vert-padding $gl-padding;
letter-spacing: .4px;
2017-08-17 22:00:37 +05:30
padding: 6px 14px;
2016-08-24 12:49:21 +05:30
text-align: center;
vertical-align: middle;
touch-action: manipulation;
background-image: none;
white-space: nowrap;
margin: 0 10px 0 4px;
a {
color: inherit;
}
2016-08-24 12:49:21 +05:30
&:hover {
2017-08-17 22:00:37 +05:30
background: $white-light;
2016-08-24 12:49:21 +05:30
}
}
}
2015-04-26 12:48:37 +05:30
}
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
.project-repo-buttons {
.project-action-button .dropdown-menu {
max-height: 250px;
overflow-y: auto;
}
}
2015-10-24 18:46:33 +05:30
.split-one {
display: inline-table;
margin-right: 12px;
> a {
2016-06-02 11:05:42 +05:30
margin: -1px;
2015-10-24 18:46:33 +05:30
}
}
2014-09-02 18:07:02 +05:30
.project-visibility-level-holder {
.radio {
margin-bottom: 10px;
i {
2015-10-24 18:46:33 +05:30
margin: 2px 0;
2014-09-02 18:07:02 +05:30
font-size: 20px;
}
.option-title {
2015-10-24 18:46:33 +05:30
font-weight: normal;
2014-09-02 18:07:02 +05:30
display: inline-block;
2017-08-17 22:00:37 +05:30
color: $gl-text-color;
2014-09-02 18:07:02 +05:30
}
.option-descr {
2015-10-24 18:46:33 +05:30
margin-left: 29px;
2017-08-17 22:00:37 +05:30
color: $project-option-descr-color;
2014-09-02 18:07:02 +05:30
}
}
}
.save-project-loader {
margin-top: 50px;
margin-bottom: 50px;
2017-08-17 22:00:37 +05:30
color: $save-project-loader-color;
2014-09-02 18:07:02 +05:30
}
.transfer-project .select2-container {
min-width: 200px;
}
2016-06-02 11:05:42 +05:30
.deploy-key-content {
@media (min-width: $screen-sm-min) {
float: left;
&:last-child {
float: right;
}
}
}
.deploy-key-projects {
@media (min-width: $screen-sm-min) {
line-height: 42px;
}
}
a.deploy-project-label {
padding: 5px;
margin-right: 5px;
2017-08-17 22:00:37 +05:30
color: $gl-text-color;
2016-06-02 11:05:42 +05:30
background-color: $row-hover;
&:hover {
color: $gl-link-color;
}
2014-09-02 18:07:02 +05:30
}
.vs-public {
2015-04-26 12:48:37 +05:30
color: $gl-primary;
2014-09-02 18:07:02 +05:30
}
.vs-internal {
2015-04-26 12:48:37 +05:30
color: $gl-warning;
2014-09-02 18:07:02 +05:30
}
.vs-private {
2015-04-26 12:48:37 +05:30
color: $gl-success;
2014-09-02 18:07:02 +05:30
}
2016-09-29 09:46:39 +05:30
.lfs-enabled {
color: $gl-success;
}
.lfs-disabled {
color: $gl-warning;
}
2014-09-02 18:07:02 +05:30
.breadcrumb.repo-breadcrumb {
2015-09-11 14:41:01 +05:30
padding: 0;
2015-09-25 12:07:36 +05:30
background: transparent;
2014-09-02 18:07:02 +05:30
border: none;
2016-06-02 11:05:42 +05:30
line-height: 36px;
2015-09-25 12:07:36 +05:30
margin: 0;
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
> li + li::before {
2014-09-02 18:07:02 +05:30
padding: 0 3px;
2017-08-17 22:00:37 +05:30
color: $project-breadcrumb-color;
2014-09-02 18:07:02 +05:30
}
2016-06-02 11:05:42 +05:30
a {
2017-08-17 22:00:37 +05:30
color: $gl-text-color;
2016-06-02 11:05:42 +05:30
}
2016-09-29 09:46:39 +05:30
.dropdown-menu {
width: 240px;
}
2014-09-02 18:07:02 +05:30
}
2015-04-26 12:48:37 +05:30
.last-push-widget {
margin-top: -1px;
}
2015-04-26 12:48:37 +05:30
.fork-namespaces {
2016-08-24 12:49:21 +05:30
.row {
-webkit-flex-wrap: wrap;
display: -webkit-flex;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
.fork-thumbnail {
2016-11-03 12:29:30 +05:30
border-radius: $border-radius-base;
2016-08-24 12:49:21 +05:30
background-color: $white-light;
border: 1px solid $border-white-light;
height: 202px;
margin: $gl-padding;
text-align: center;
width: 169px;
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
&:hover,
&.forked {
2016-08-24 12:49:21 +05:30
background-color: $row-hover;
border-color: $row-hover-border;
}
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
.no-avatar {
width: 100px;
height: 100px;
background-color: $gray-light;
2017-08-17 22:00:37 +05:30
border: 1px solid $white-normal;
2016-08-24 12:49:21 +05:30
margin: 0 auto;
2016-11-03 12:29:30 +05:30
border-radius: 50%;
2016-08-24 12:49:21 +05:30
i {
font-size: 100px;
2017-08-17 22:00:37 +05:30
color: $white-normal;
2016-08-24 12:49:21 +05:30
}
}
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
a {
display: block;
width: 100%;
height: 100%;
padding-top: $gl-padding;
2017-08-17 22:00:37 +05:30
color: $gl-text-color;
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
.caption {
min-height: 30px;
padding: $gl-padding 0;
}
}
2015-04-26 12:48:37 +05:30
2016-08-24 12:49:21 +05:30
img {
2016-11-03 12:29:30 +05:30
border-radius: 50%;
2016-08-24 12:49:21 +05:30
max-width: 100px;
}
2015-04-26 12:48:37 +05:30
}
}
}
2016-08-24 12:49:21 +05:30
.project-import {
.form-group {
margin-bottom: 5px;
}
.import-buttons {
padding-left: 0;
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
.btn {
padding: 8px;
2017-08-17 22:00:37 +05:30
margin-left: 10px;
2016-08-24 12:49:21 +05:30
}
> div {
2017-08-17 22:00:37 +05:30
margin-bottom: 10px;
2016-08-24 12:49:21 +05:30
padding-left: 0;
}
}
2015-04-26 12:48:37 +05:30
}
2015-09-11 14:41:01 +05:30
.project-stats {
font-size: 0;
2017-08-17 22:00:37 +05:30
text-align: center;
2015-09-25 12:07:36 +05:30
2016-08-24 12:49:21 +05:30
.nav {
padding-top: 12px;
padding-bottom: 12px;
2017-08-17 22:00:37 +05:30
border-bottom: 1px solid $border-color;
2015-09-25 12:07:36 +05:30
}
2015-09-11 14:41:01 +05:30
2016-08-24 12:49:21 +05:30
.nav > li {
2016-06-22 15:30:34 +05:30
display: inline-block;
2016-08-24 12:49:21 +05:30
&:not(:last-child) {
margin-right: $gl-padding;
}
2017-08-17 22:00:37 +05:30
&.right {
vertical-align: top;
margin-top: 0;
2016-08-24 12:49:21 +05:30
2017-08-17 22:00:37 +05:30
@media (min-width: $screen-lg-min) {
2016-08-24 12:49:21 +05:30
float: right;
}
}
2015-10-24 18:46:33 +05:30
}
.nav > li > a {
2016-08-24 12:49:21 +05:30
padding: 0;
2015-10-24 18:46:33 +05:30
background-color: transparent;
2017-08-17 22:00:37 +05:30
font-size: 14px;
2016-08-24 12:49:21 +05:30
line-height: 29px;
color: $notes-light-color;
2015-09-25 12:07:36 +05:30
2016-08-24 12:49:21 +05:30
&:hover,
&:focus {
2017-08-17 22:00:37 +05:30
color: $gl-text-color;
2016-08-24 12:49:21 +05:30
}
2015-09-25 12:07:36 +05:30
}
2015-09-11 14:41:01 +05:30
2016-06-22 15:30:34 +05:30
li.missing {
2017-08-17 22:00:37 +05:30
border: 1px dashed $border-gray-normal;
2016-06-22 15:30:34 +05:30
border-radius: $border-radius-default;
a {
2016-08-24 12:49:21 +05:30
padding-left: 10px;
padding-right: 10px;
2016-06-22 15:30:34 +05:30
color: $notes-light-color;
display: block;
}
2015-09-11 14:41:01 +05:30
&:hover {
2016-06-22 15:30:34 +05:30
background-color: $gray-normal;
2015-09-11 14:41:01 +05:30
}
}
}
pre.light-well {
2017-08-17 22:00:37 +05:30
border-color: $well-light-border;
2015-09-11 14:41:01 +05:30
}
2015-09-25 12:07:36 +05:30
2015-10-24 18:46:33 +05:30
.git-empty {
2016-06-02 11:05:42 +05:30
margin: 0 7px 7px;
2015-10-24 18:46:33 +05:30
h5 {
2017-08-17 22:00:37 +05:30
color: $gl-text-color;
2015-10-24 18:46:33 +05:30
}
.light-well {
2016-11-03 12:29:30 +05:30
border-radius: 2px;
2015-10-24 18:46:33 +05:30
2017-08-17 22:00:37 +05:30
color: $well-light-text-color;
2015-10-24 18:46:33 +05:30
font-size: 13px;
line-height: 1.6em;
}
}
.project-footer {
margin-top: 20px;
.btn-remove {
@include btn-middle;
@include btn-red;
float: left !important;
}
}
2015-09-25 12:07:36 +05:30
/*
* Projects list rendered on dashboard and user page
*/
.projects-list {
@include basic-list;
2017-08-17 22:00:37 +05:30
display: flex;
flex-direction: column;
2015-09-25 12:07:36 +05:30
2017-08-17 22:00:37 +05:30
// Disable Flexbox for admin page
&.admin-projects {
display: block;
2015-09-25 12:07:36 +05:30
2017-08-17 22:00:37 +05:30
.project-row {
display: block;
2015-09-25 12:07:36 +05:30
}
2017-08-17 22:00:37 +05:30
}
2015-09-25 12:07:36 +05:30
2017-08-17 22:00:37 +05:30
.project-row {
display: flex;
align-items: center;
@include basic-list-stats;
}
2015-10-24 18:46:33 +05:30
2017-08-17 22:00:37 +05:30
h3 {
font-size: $gl-font-size;
}
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
a {
color: $gl-text-color;
}
2016-08-24 12:49:21 +05:30
2017-08-17 22:00:37 +05:30
.avatar-container,
.controls {
flex: 0 0 auto;
}
.avatar-container {
align-self: flex-start;
> a {
width: 100%;
2015-09-25 12:07:36 +05:30
}
}
2017-08-17 22:00:37 +05:30
.project-details {
min-width: 0;
p,
.commit-row-message {
@include str-truncated(100%);
margin-bottom: 0;
}
}
.controls {
margin-left: auto;
text-align: right;
}
.ci-status-link {
display: inline-block;
line-height: 17px;
vertical-align: middle;
&:hover {
text-decoration: none;
}
2015-09-25 12:07:36 +05:30
}
}
.panel .projects-list li {
padding: 10px 15px;
margin: 0;
}
2017-08-17 22:00:37 +05:30
.commits-search-form {
.input-short {
min-width: 200px;
2015-09-25 12:07:36 +05:30
}
}
2015-11-26 14:37:03 +05:30
.project-last-commit {
2017-08-17 22:00:37 +05:30
background-color: $gray-light;
border: 1px solid $border-color;
border-radius: $border-radius-base;
padding: 12px;
2016-08-24 12:49:21 +05:30
@media (min-width: $screen-sm-min) {
margin-top: $gl-padding;
}
2015-11-26 14:37:03 +05:30
.ci-status {
2016-08-24 12:49:21 +05:30
margin-right: $gl-padding;
2015-11-26 14:37:03 +05:30
}
.commit-row-message {
2017-08-17 22:00:37 +05:30
color: $gl-text-color;
2015-11-26 14:37:03 +05:30
}
.commit_short_id {
2016-08-24 12:49:21 +05:30
margin-right: 5px;
2015-11-26 14:37:03 +05:30
color: $gl-link-color;
font-weight: 600;
}
.commit-author-link {
.commit-author-name {
font-weight: 600;
}
}
2015-09-25 12:07:36 +05:30
}
2015-11-26 14:37:03 +05:30
2016-09-29 09:46:39 +05:30
.project-show-readme {
.row-content-block {
background-color: inherit;
border: none;
2015-11-26 14:37:03 +05:30
}
2016-09-29 09:46:39 +05:30
.readme-holder {
padding: $gl-padding 0;
border-top: 0;
.edit-project-readme {
z-index: 2;
position: relative;
}
.wiki h1 {
border-bottom: none;
padding: 0;
}
}
2015-12-23 02:04:40 +05:30
}
.git-clone-holder {
2016-08-24 12:49:21 +05:30
width: 380px;
.btn-clipboard {
border: 1px solid $border-color;
}
.clone-options {
display: table-cell;
2016-11-03 12:29:30 +05:30
a.btn {
width: 100%;
}
}
.form-control {
@extend .monospace;
2017-08-17 22:00:37 +05:30
background: $white-light;
font-size: 14px;
margin-left: -1px;
cursor: auto;
width: 101%;
}
}
2016-04-02 18:10:28 +05:30
.cannot-be-merged,
.cannot-be-merged:hover {
2017-08-17 22:00:37 +05:30
color: $error-exclamation-point;
2016-04-02 18:10:28 +05:30
margin-top: 2px;
}
.private-forks-notice .private-fork-icon {
i:nth-child(1) {
2017-08-17 22:00:37 +05:30
color: $project-private-forks-notice-odd;
2016-04-02 18:10:28 +05:30
}
i:nth-child(2) {
2017-08-17 22:00:37 +05:30
color: $white-light;
2016-06-02 11:05:42 +05:30
}
}
2016-09-13 17:45:13 +05:30
.new_protected_branch {
label {
margin-top: 6px;
font-weight: normal;
}
}
2017-08-17 22:00:37 +05:30
.create-new-protected-branch-button {
@include dropdown-link;
width: 100%;
background-color: transparent;
border: 0;
text-align: left;
}
.protected-branches-list,
.protected-tags-list {
margin-bottom: 30px;
2016-06-02 11:05:42 +05:30
a {
2017-08-17 22:00:37 +05:30
color: $gl-text-color;
2016-06-02 11:05:42 +05:30
&:hover {
color: $gl-link-color;
}
2016-09-13 17:45:13 +05:30
&.is-active {
font-weight: 600;
}
}
.settings-message {
margin: 0;
border-radius: 0 0 1px 1px;
padding: 20px 0;
border: none;
}
.table-bordered {
border-radius: 1px;
2017-08-17 22:00:37 +05:30
th:not(:last-child),
td:not(:last-child) {
2016-09-13 17:45:13 +05:30
border-right: solid 1px transparent;
}
2016-04-02 18:10:28 +05:30
}
}
2016-06-22 15:30:34 +05:30
2017-08-17 22:00:37 +05:30
.protected-tags-list {
.dropdown-menu-toggle {
width: 100%;
max-width: 300px;
}
.flash-container {
padding: 0;
}
}
2016-06-22 15:30:34 +05:30
.custom-notifications-form {
.is-loading {
.custom-notification-event-loading {
display: inline-block;
}
}
}
.custom-notification-event-loading {
display: none;
margin-left: 5px;
&.is-done {
color: $gl-text-green;
}
}
2017-08-17 22:00:37 +05:30
.project-refs-form .dropdown-menu,
.dropdown-menu-projects,
.dropdown-menu-branches {
2016-09-29 09:46:39 +05:30
width: 300px;
@media (min-width: $screen-sm-min) {
width: 500px;
}
a {
white-space: normal;
2016-06-22 15:30:34 +05:30
}
}
2016-08-24 12:49:21 +05:30
.compare-form-group {
.dropdown-menu {
2017-08-17 22:00:37 +05:30
width: 100%;
@media (min-width: $screen-sm-min) {
width: 300px;
}
}
+ .compare-ellipsis {
width: 100%;
vertical-align: middle;
text-align: center;
margin-top: -20px;
@media (min-width: $screen-sm-min) {
margin-top: 0;
width: auto;
}
}
.inline-input-group {
width: 100%;
@media (min-width: $screen-sm-min) {
width: 250px;
}
2016-08-24 12:49:21 +05:30
}
}
2016-09-13 17:45:13 +05:30
.clearable-input {
position: relative;
.clear-icon {
@extend .fa-times;
display: none;
position: absolute;
right: 7px;
top: 7px;
color: $location-icon-color;
2017-08-17 22:00:37 +05:30
&::before {
2016-09-13 17:45:13 +05:30
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
}
}
&.has-value {
.clear-icon {
cursor: pointer;
display: block;
}
}
}
2016-09-29 09:46:39 +05:30
.project-path {
.form-control {
min-width: 100px;
}
2016-11-03 12:29:30 +05:30
2016-09-29 09:46:39 +05:30
.select2-choice {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
2016-11-03 12:29:30 +05:30
}
.project-home-empty {
border-top: 0;
.container-fluid {
background: none;
}
p {
margin-left: auto;
margin-right: auto;
max-width: 650px;
}
}
2017-08-17 22:00:37 +05:30
.project-feature {
padding-top: 10px;
2016-11-03 12:29:30 +05:30
@media (min-width: $screen-sm-min) {
padding-left: 45px;
}
2017-08-17 22:00:37 +05:30
&.nested {
@media (min-width: $screen-sm-min) {
padding-left: 90px;
}
}
2016-11-03 12:29:30 +05:30
}
.project-repo-select {
&.disabled {
opacity: 0.5;
pointer-events: none;
}
}
2017-08-17 22:00:37 +05:30
.variables-table {
table-layout: fixed;
&.table-responsive {
border: none;
}
.variable-key {
max-width: 120px;
overflow: hidden;
word-wrap: break-word;
white-space: nowrap;
text-overflow: ellipsis;
}
.variable-value {
max-width: 150px;
overflow: hidden;
word-wrap: break-word;
white-space: nowrap;
text-overflow: ellipsis;
}
.variable-menu {
text-align: right;
}
}
.services-installation-info .row {
margin-bottom: 10px;
}
.service-installation {
padding: 32px;
margin: 32px;
border-radius: 3px;
background-color: $white-light;
h3 {
margin-top: 0;
}
hr {
margin: 32px 0;
border-color: $border-color;
}
}