Skip to content

Commit

Permalink
Merge pull request #5510 from NuGet/dev
Browse files Browse the repository at this point in the history
[ReleasePrep][2018.02.20]RI of dev into master
  • Loading branch information
chenriksson committed Feb 20, 2018
2 parents 7774fd3 + ae89732 commit 74a3334
Show file tree
Hide file tree
Showing 82 changed files with 2,502 additions and 576 deletions.
97 changes: 81 additions & 16 deletions src/Bootstrap/dist/css/bootstrap-theme.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/Bootstrap/less/theme/all.less
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
@import "page-home.less";
@import "page-list-packages.less";
@import "page-manage-curated-feed.less";
@import "page-manage-organizations.less";
@import "page-manage-owners.less";
@import "page-manage-packages.less";
@import "page-delete-package.less";
Expand Down
34 changes: 34 additions & 0 deletions src/Bootstrap/less/theme/base.less
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,40 @@ body {
}
}

#autocomplete-results-container {
position: absolute;
z-index: 1;
background-color: white;
border: 1px solid black;
display: none;
left: 0;
right: 0;
margin-left: floor((@grid-gutter-width / 2));
margin-right: floor((@grid-gutter-width / 2));

.autocomplete-row-data {
padding-top:2px;
padding-bottom:2px;
color:@text-color;

:focus {
background-color: @input-border-focus;
}
}

.autocomplete-row-id {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

.autocomplete-row-owners {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}

.footer {
background-color: @panel-footer-bg;
color: @panel-footer-color;
Expand Down
44 changes: 21 additions & 23 deletions src/Bootstrap/less/theme/modals.less
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,22 @@
overflow: hidden;

.modal-box {
border-radius: 8px;
background-color: white;
border-radius: 8px;
background-color: white;
margin-left: auto;
margin-right: auto;
min-height: 364px;
min-width: 320px;
max-width: 448px;
width: calc(100% - 40px);
overflow: hidden;
margin-left: 37.5%;
padding: 0px;

.modal-title {
background-color: #4181B8;
color: white;
padding: 15px;

.title-text {
vertical-align: top;
}

.dismiss-button {
background: transparent;
border: 0px;
Expand All @@ -36,34 +37,31 @@
}

.modal-body {
padding: 15px;
padding: 0px;

.tag-node {
background-color: #fff4ce;
padding: 13px;
margin: -15px;
text-align: left;
}

.error-message {
margin-left: -15px;
margin-right: -15px;
.title-text {
vertical-align: top;
}
}

.signin-node {
padding: 15% 15%;
.action-node {
padding: 9% 6%;
text-align: center;
margin-top: 16px;
}

.provider-button {
font-size: 16px;
line-height: 2em;
}
.action-button {
font-size: 16px;
line-height: 2em;
}

.transform-node {
text-align: center;
margin-bottom: 10px;
.transform-text {
padding: 0px 15px;
margin: 0px;
}
}
}
Expand Down
48 changes: 48 additions & 0 deletions src/Bootstrap/less/theme/page-manage-organizations.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
.page-manage-organizations {
@section-margin-top: 40px;

h1 {
margin-bottom: 0;
}

h2 {
margin-bottom: 10px;
margin-top: 0;
}

.form-section-title {
margin-top: @section-margin-top;

@media (min-width: @screen-sm-min) {
float: left;
text-align: right;
}
}

.form-section-data {
@media (min-width: @screen-sm-min) {
margin-top: @section-margin-top;
line-height: 3;
float: right;
text-align: right;
}
}

.panel {
margin-top: 5px;
}

.form-group + .form-group {
.btn {
margin-top: 20px;
}
}
}

.manage-members-listing tbody:first-child {
border-style: hidden
}

.manage-members-listing {
margin-bottom: 0;
}
Loading

0 comments on commit 74a3334

Please sign in to comment.