-
Notifications
You must be signed in to change notification settings - Fork 146
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
Bump sass from 1.64.1 to 1.65.1 #1997
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps [sass](https://github.com/sass/dart-sass) from 1.64.1 to 1.65.1. - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.64.1...1.65.1) --- updated-dependencies: - dependency-name: sass dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
Looks fine, however we get this very weird deprecation warning which doesn't really make sense to me when running Updating to bootstrap 5.3.0 doesn't resolve the deprecation warning. (venv) evap@ubuntu-jammy:/opt/evap$ ./manage.py scss
Deprecation Warning: Passing percentage units to the global abs() function is deprecated.
In the future, this will emit a CSS abs() function to be resolved by the browser.
To preserve current behavior: math.abs(100%)
To emit a CSS abs() now: abs(#{100%})
More info: https://sass-lang.com/d/abs-percent
╷
1 │ ┌ @import "../bootstrap/scss/functions";
2 │ │ @import "variables";
3 │ │ @import "mixins";
4 │ │ @import "font-awesome";
5 │ │ @import "bootstrap";
6 │ │ @import "components";
7 │ │ @import "adjustments";
8 │ │ @import "utilities";
9 │ │
10 │ │ html {
11 │ │ position: relative;
12 │ │ min-height: 100%;
13 │ │ scroll-padding-top: 150px; // so scrolled-to elements are not hidden by navbar.
14 │ │ }
15 │ │
16 │ │ body {
17 │ │ overflow-y: scroll !important;
18 │ │ margin-bottom: 60px; // keep space for footer
19 │ │ background-image: url("../images/triangles_gray.svg");
20 │ │ background-size: cover;
21 │ │ background-attachment: fixed;
22 │ │ }
23 │ │
24 │ │ .footer {
25 │ │ position: absolute;
26 │ │ bottom: 0;
27 │ │ width: 100%;
28 │ │ height: 46px;
29 │ │ background: $darker-gray;
30 │ │ line-height: 1.2;
31 │ │ color: $light-gray;
32 │ │
33 │ │ a {
34 │ │ white-space: nowrap;
35 │ │ }
36 │ │
37 │ │ .navbar-nav .nav-link.nav-link-multiline {
38 │ │ line-height: 1.2;
39 │ │ }
40 │ │ }
41 │ │
42 │ │ .brand-image {
43 │ │ height: 42px;
44 │ │ }
45 │ │
46 │ │ .color-bar {
47 │ │ height: 0.2rem;
48 │ │ display: flex;
49 │ │ }
50 │ │
51 │ │ .participants-warning {
52 │ │ opacity: 0.3;
53 │ │ font-weight: normal;
54 │ │ }
55 │ │
56 │ │ .archive-info {
57 │ │ font-weight: normal;
58 │ │ }
59 │ │
60 │ │ .deactivate {
61 │ │ opacity: 0.4;
62 │ │ }
63 │ │
64 │ │ .textanswer-link {
65 │ │ color: $black;
66 │ │ }
67 │ │ .textanswer-original {
68 │ │ color: $medium-gray;
69 │ │ }
70 │ │
71 │ │ .grade-course-table tr {
72 │ │ height: 57px;
73 │ │ }
74 │ │
75 │ │ .sortable-ghost {
76 │ │ background: $lighter-gray;
77 │ │ }
78 │ │
79 │ │ .table-striped tbody tr.sortable-ghost {
80 │ │ background: $light-gray;
81 │ │ }
82 │ │
83 │ │ .sortable .movable {
84 │ │ width: 10px;
85 │ │ }
86 │ │
87 │ │ .sortable .movable span.movable-icon {
88 │ │ font-size: 16px;
89 │ │ top: 8px;
90 │ │ cursor: move;
91 │ │ }
92 │ │
93 │ │ .break-word {
94 │ │ li, a {
95 │ │ word-wrap: break-word;
96 │ │ }
97 │ │ }
98 │ │
99 │ │ .card-body .mb-3:last-of-type {
100 │ │ margin-bottom: 0;
101 │ │ }
102 │ │
103 │ │ td.icon {
104 │ │ padding: 0 !important;
105 │ │ text-align: center;
106 │ │ min-width: 20px;
107 │ │ }
108 │ │
109 │ │ .card-header .nav-pills {
110 │ │ .nav-link {
111 │ │ padding: 0.1rem 0.5rem;
112 │ │ }
113 │ │ }
114 │ │
115 │ │ /* Results index page */
116 │ │ // make the line always break between semester and year (e.g., "WT<break>17/18" and "ST<break>18")
117 │ │ .semester-short-name {
118 │ │ word-spacing: 30000px;
119 │ │ }
120 │ │
121 │ │ .reset-button {
122 │ │ color: $dark-gray;
123 │ │ font-weight: normal;
124 │ │ font-size: 1rem;
125 │ │ cursor: pointer;
126 │ │ transition: color 0.15s ease-in-out;
127 │ │
128 │ │ &:hover {
129 │ │ color: $darker-gray;
130 │ │ }
131 │ │
132 │ │ &:active {
133 │ │ color: $black;
134 │ │ }
135 │ │ }
136 │ │
137 │ │ .result-filter-list {
138 │ │ max-height: 170px;
139 │ │ overflow-y: auto;
140 │ │ padding-left: 4px;
141 │ │ }
142 │ │
143 │ │ .space-normal {
144 │ │ white-space: normal;
145 │ │ }
146 │ │
147 │ │ @media print {
148 │ │ @import "print";
149 │ └ }
╵
evap/static/scss/evap.scss 1:1 divide()
evap/static/bootstrap/scss/mixins/_grid.scss 59:12 row-cols()
evap/static/bootstrap/scss/mixins/_grid.scss 85:13 @content
evap/static/bootstrap/scss/mixins/_breakpoints.scss 68:5 media-breakpoint-up()
evap/static/bootstrap/scss/mixins/_grid.scss 72:5 make-grid-columns()
evap/static/bootstrap/scss/_grid.scss 38:3 @import
evap/static/scss/_bootstrap.scss 17:9 @import
evap/static/scss/evap.scss 5:9 root stylesheet |
Superseded by #2006. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps sass from 1.64.1 to 1.65.1.
Release notes
Sourced from sass's releases.
Changelog
Sourced from sass's changelog.
Commits
bb24476
Update abs-percent deprecatedIn version (#2057)e4c8cd6
Calc functions implementation (#1970)4c3bd0e
Deprecate explicitly passing null as an alpha value (#2049)8802c69
Add ignores to work around dart-lang/linter#4381 (#2053)17e3a48
Convert Sass to Dart 3 style (#2038)8e5e7fc
Add a pubignore so pub knows to publish protobuf files (#2050)890fc17
Include protobuf definitions in the pub package (#2048)You can trigger a rebase of this PR by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)