Skip to content

Commit fc4dd7e

Browse files
authored
[FEATURE] Create session tags detail pages (#41)
* Migrate build tool from deprecated node-sass to sass * Add tag detail pages * Add tag edit link to BE module * Remove unused imports * Move path_segment after label * Add missing plugin icon
1 parent 1e7eb2a commit fc4dd7e

31 files changed

Lines changed: 858 additions & 1839 deletions

File tree

Build/Sources/Sass/frontend/_tag.scss

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,29 @@ $session-tag-border-radius: 4px !default;
2222
border-radius: $session-tag-border-radius;
2323
margin: 2px;
2424
}
25+
.sessionplaner-tag-title {
26+
text-decoration-line: underline;
27+
text-decoration-thickness: 5px;
28+
text-decoration-skip-ink: none;
29+
}
2530
@each $name, $color in $session-colors {
2631
.sessionplaner-tag-#{$name} {
2732
color: color-contrast($color);
2833
background-color: $color;
2934
}
35+
.sessionplaner-tag-title-#{$name} {
36+
text-decoration-color: $color;
37+
}
38+
}
39+
40+
//
41+
// Detail
42+
//
43+
.sessionplaner-tagdetail {
44+
max-width: 600px;
45+
margin-left: auto;
46+
margin-right: auto;
47+
}
48+
.sessionplaner-tagdetail-backlink {
49+
margin-top: 2rem;
3050
}

Build/gulpfile.babel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ import terser from 'gulp-terser';
99
import jshint from 'gulp-jshint';
1010

1111
// CSS
12-
import nodeSass from 'node-sass';
12+
import dartSass from 'sass';
1313
import gulpSass from 'gulp-sass';
1414
import autoprefixer from 'autoprefixer';
1515
import postcss from 'gulp-postcss';
1616

17-
const sass = gulpSass(nodeSass);
17+
const sass = gulpSass(dartSass);
1818

1919
const paths = {
2020
src: './Sources/',

0 commit comments

Comments
 (0)