Skip to content

Commit 19e2108

Browse files
committed
chore: Change ambiguous and conflicing CSS class
1 parent 2d2c818 commit 19e2108

20 files changed

+30
-30
lines changed

app/styles/partials/overrides.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ body.dimmable.undetached.dimmed {
4242
}
4343

4444
.ui {
45-
&[class*='less margin'] {
45+
&[class*='no margin'] {
4646
margin: 0 !important;
4747
}
4848

49-
&[class*='less padding'] {
49+
&[class*='no padding'] {
5050
padding: 0 !important;
5151
}
5252

53-
&.less {
53+
&.no {
5454
&[class*='right margin'] {
5555
margin-right: 0 !important;
5656
}

app/templates/admin/permissions/system-roles.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="ui basic segment less padding">
1+
<div class="ui basic segment no padding">
22
<div class="ui {{if this.isLoading 'active'}} inverted dimmer">
33
<div class="ui loader"></div>
44
</div>

app/templates/components/errors/forbidden-error.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<br>
2-
<h1 class="text muted weight-300 less bottom margin">403 {{t 'Forbidden'}}</h1>
2+
<h1 class="text muted weight-300 no bottom margin">403 {{t 'Forbidden'}}</h1>
33
<h1 class="weight-300 description">
44
{{t 'Oops, you don\'t have the permission'}}<br>
55
{{t 'to access this page'}}

app/templates/components/errors/generic-error.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<br>
2-
<h1 class="text muted weight-300 less bottom margin">{{t 'An unexpected error has occurred.'}}</h1>
2+
<h1 class="text muted weight-300 no bottom margin">{{t 'An unexpected error has occurred.'}}</h1>
33
<h1 class="weight-300 description">{{t 'Oops, the page you were trying'}}<br> {{t 'to access'}}<br> {{t 'has caused an error. '}}.</h1>
44
<h3 class="weight-300">
55
{{t 'This, may or may not be a server issue. We are looking into it. You may want to head back to the home page.'}}<br>

app/templates/components/errors/not-found.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<br>
2-
<h1 class="text muted weight-300 less bottom margin">404 {{t 'Not Found'}}</h1>
2+
<h1 class="text muted weight-300 no bottom margin">404 {{t 'Not Found'}}</h1>
33
<h1 class="weight-300 description">{{t 'Oops, the page you are'}}<br> {{t 'looking for does not'}}<br> {{t 'exist'}}.</h1>
44
<h3 class="weight-300">
55
{{t 'You may want to head back to the home page.'}}<br>

app/templates/components/errors/server-error.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<br>
2-
<h1 class="text muted weight-300 less bottom margin">500 {{t 'Internal Server Error'}}</h1>
2+
<h1 class="text muted weight-300 no bottom margin">500 {{t 'Internal Server Error'}}</h1>
33
<h1 class="weight-300 description">
44
{{t 'Oops, the page you are'}}<br>
55
{{t 'looking for caused an error'}}<br>

app/templates/components/events/view/export/download-common.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<pre>{{this.displayUrl}}</pre>
1212
</div>
1313
<a class="ui link" href="#" onclick={{action 'startExportTask'}}> {{t 'Alternatively, you can download the'}} {{this.downloadType}} {{t ' here'}}</a>
14-
<div class="ui basic segment less left padding">
14+
<div class="ui basic segment no left padding">
1515
<a href="{{this.eventDownloadUrl}}" class="ui blue button {{if this.isDownloadDisabled 'disabled' ''}} {{if this.isLoading 'loading'}}">
1616
{{t 'Download '}}{{this.downloadType}}
1717
</a>

app/templates/components/events/view/export/download-zip.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<div class="field">
2222
<UiCheckbox @class="toggle" @label={{t "Document"}} @checked={{this.data.document}} @onChange={{action (mut this.data.document)}} />
2323
</div>
24-
<div class="ui basic segment less left padding">
24+
<div class="ui basic segment no left padding">
2525
<button class="ui blue button" {{action this.startGeneration}}>
2626
{{t 'Start'}}
2727
</button>

app/templates/components/events/view/overview/event-setup-checklist.hbs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
</div>
44
<div class= "content">
55
<div class="ui fluid segments">
6-
<a href="{{href-to 'events.view.edit.basic-details'}}" class="ui segment {{unless this.data.event.name 'secondary'}} grid less margin">
6+
<a href="{{href-to 'events.view.edit.basic-details'}}" class="ui segment {{unless this.data.event.name 'secondary'}} grid no margin">
77
<div class="ui row">
88
<div class="column one wide">
99
<i class="{{if this.data.event.name 'checkmark green' 'warning black'}} big icon"></i>
@@ -18,7 +18,7 @@
1818
</div>
1919
</div>
2020
</a>
21-
<a href="{{href-to 'events.view.edit.attendee'}}" class="ui segment {{unless this.data.event.isTicketFormEnabled 'secondary'}} grid less margin">
21+
<a href="{{href-to 'events.view.edit.attendee'}}" class="ui segment {{unless this.data.event.isTicketFormEnabled 'secondary'}} grid no margin">
2222
<div class="ui row">
2323
<div class="column one wide">
2424
<i class="{{if this.data.event.isTicketFormEnabled 'checkmark green' 'warning black'}} big icon"></i>
@@ -33,7 +33,7 @@
3333
</div>
3434
</div>
3535
</a>
36-
<a href="{{href-to 'events.view.edit.sponsors'}}" class="ui {{unless this.data.event.isSponsorsEnabled 'secondary'}} segment grid less margin">
36+
<a href="{{href-to 'events.view.edit.sponsors'}}" class="ui {{unless this.data.event.isSponsorsEnabled 'secondary'}} segment grid no margin">
3737
<div class="ui row">
3838
<div class="column one wide">
3939
<i class="{{if this.data.event.isSponsorsEnabled 'checkmark green' 'warning black'}} big icon"></i>
@@ -48,7 +48,7 @@
4848
</div>
4949
</div>
5050
</a>
51-
<a href="{{href-to 'events.view.edit.sessions-speakers'}}" class="ui {{unless this.data.event.isSessionsSpeakersEnabled 'secondary'}} segment grid less margin">
51+
<a href="{{href-to 'events.view.edit.sessions-speakers'}}" class="ui {{unless this.data.event.isSessionsSpeakersEnabled 'secondary'}} segment grid no margin">
5252
<div class="ui row">
5353
<div class="column one wide">
5454
<i class="{{if this.data.event.isSessionsSpeakersEnabled 'checkmark green' 'warning black'}} big icon"></i>
@@ -63,7 +63,7 @@
6363
</div>
6464
</div>
6565
</a>
66-
<a href="{{href-to 'events.view.edit.sessions-speakers'}}" class="ui {{unless this.data.event.speakersCall.announcement 'secondary'}} segment grid less margin">
66+
<a href="{{href-to 'events.view.edit.sessions-speakers'}}" class="ui {{unless this.data.event.speakersCall.announcement 'secondary'}} segment grid no margin">
6767
<div class="ui row">
6868
<div class="column one wide">
6969
<i class="{{if this.data.event.speakersCall.announcement 'checkmark green' 'warning black'}} big icon"></i>
@@ -78,7 +78,7 @@
7878
</div>
7979
</div>
8080
</a>
81-
<a href="{{href-to 'events.view.edit.sessions-speakers'}}" class="ui {{unless this.data.event.isSessionsSpeakersEnabled 'secondary'}} segment grid less margin">
81+
<a href="{{href-to 'events.view.edit.sessions-speakers'}}" class="ui {{unless this.data.event.isSessionsSpeakersEnabled 'secondary'}} segment grid no margin">
8282
<div class="ui row">
8383
<div class="column one wide">
8484
<i class="{{if this.data.event.isSessionsSpeakersEnabled 'checkmark green' 'warning black'}} big icon"></i>

app/templates/components/footer-main.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<div class="ui inverted section divider"></div>
7373
<div class="ui stackable grid">
7474
<div class="thirteen wide computer twelve wide tablet column left aligned">
75-
<div class="ui horizontal inverted small divided link list less top margin">
75+
<div class="ui horizontal inverted small divided link list no top margin">
7676
<span class="item">{{t 'Copyright'}} &copy; {{moment-format (now) 'YYYY'}} {{this.settings.appName}} </span>
7777
{{#each this.footerPages as |page|}}
7878
<LinkTo @route="pages" @model={{page.url}} class="item">

0 commit comments

Comments
 (0)