Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Less 3 upgrade #337

Merged
merged 4 commits into from
Aug 3, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unnecessary syntax (as of less 3)
JakeSidSmith committed Aug 3, 2020
commit 75d760f1fe27ae8ccdfefa7374f653d854d59a57
2 changes: 1 addition & 1 deletion src/less/modals.less
Original file line number Diff line number Diff line change
@@ -79,7 +79,7 @@
.modal {
display: flex;
flex-direction: column;
max-height: ~'calc(100vh - @{modal-margin-vertical-double})';
max-height: calc(100vh - @modal-margin-vertical-double);
}

.modal-body {
2 changes: 1 addition & 1 deletion src/less/overrides.less
Original file line number Diff line number Diff line change
@@ -226,7 +226,7 @@ input[type='radio'] {
</svg>
*/
@select-arrows-background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjE0IiB2aWV3Qm94PSIwIDAgOCAxNCI+PHBhdGggZD0iTSA0IDAgOCA1IDAgNSB6Ii8+PHBhdGggZD0iTSAwIDkgOCA5IDQgMTQgeiIvPjwvc3ZnPgo='); // lesshint maxCharPerLine: false
@select-arrows-position: ~'calc(100% - @{select-arrows-offset})' 50%;
@select-arrows-position: calc(100% - @select-arrows-offset) 50%;