Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Metadata Catalogue
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIP
Metadata Catalogue
Merge requests
!768
Migrate Less to SCSS, and setup webpack for scss compilation
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Migrate Less to SCSS, and setup webpack for scss compilation
EMC-288-SASS-compiler
into
develop
Overview
1
Commits
61
Pipelines
21
Changes
1
Merged
Hamayoon Khan
requested to merge
EMC-288-SASS-compiler
into
develop
8 months ago
Overview
1
Commits
61
Pipelines
21
Changes
1
Expand
Changed all LESS files to SCSS and adjusted syntax
Developed a Webpack configuration to compile SCSS into CSS
Fixed import statments to correctly import styles from node_modules
Rearranged the order of imports for proper loading
Closes
EMC-288
0
0
Merge request reports
Viewing commit
a72df59d
Prev
Next
Show latest version
1 file
+
6
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
a72df59d
Fix editor help text's visibility and positioning
· a72df59d
Hamayoon Khan
authored
7 months ago
web/src/editor/src/templates/Parent.js
+
6
−
8
Options
@@ -8,20 +8,18 @@ export default _.template(`
class='row'
<% } %>
>
<div class="col-md-3
d-flex justify-content-between
">
<div class="col-md-3">
<label for="input-<%= data.modelAttribute %>">
<%= data.label %>
<% if(data.helpText) { %>
<a data-bs-toggle="collapse" title="Click for help" href="#help-<%= data.modelAttribute %>" data-parent="#editor"><i class="fa-regular fa-circle-question"></i></a>
<% } %>
</label>
<div>
<button class="editor-button add m-1" <%= data.disabled%>>Add <span class="fa-solid fa-plus" aria-hidden="true"></span></button>
<% if (data.fetchKeywordsButton) { %>
<button class="editor-button legilo-fetch-btn m-1">Suggest Keywords</button>
<% } %>
</div>
<div id="help-<%= data.modelAttribute %>" class="editor-help">
<button class="editor-button add" <%= data.disabled%>>Add <span class="fa-solid fa-plus" aria-hidden="true"></span></button>
<% if (data.fetchKeywordsButton) { %>
<button class="editor-button legilo-fetch-btn mx-lg-1">Suggest Keywords</button>
<% } %>
<div id="help-<%= data.modelAttribute %>" class="editor-help w-100">
<%= data.helpText %>
</div>
</div>
Loading