mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-17 04:59:37 -04:00
Merge pull request #1196 from alphagov/remove-unwanted-sass
Remove unwanted SASS
This commit is contained in:
@@ -1,40 +0,0 @@
|
||||
.phone {
|
||||
|
||||
background: $black;
|
||||
border-radius: 15px;
|
||||
padding: 15px;
|
||||
|
||||
&-speaker {
|
||||
margin: 5px auto 20px;
|
||||
border-radius: 5px;
|
||||
width: 30px;
|
||||
height: 7px;
|
||||
background: rgba($white, 0.2);
|
||||
}
|
||||
|
||||
&-screen {
|
||||
background: $white;
|
||||
color: $black;
|
||||
min-height: 377px;
|
||||
border-radius: 1px;
|
||||
}
|
||||
|
||||
&-recipient {
|
||||
@include core-16($tabular-numbers: true);
|
||||
margin: 0 0 5px 7px;
|
||||
padding-top: 10px;
|
||||
color: $secondary-text-colour;
|
||||
}
|
||||
|
||||
&-sms {
|
||||
padding: 10px;
|
||||
margin: 10px;
|
||||
background: $panel-colour;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.phone-container {
|
||||
margin-bottom: -200px;
|
||||
}
|
||||
@@ -54,7 +54,6 @@ $path: '/static/images/';
|
||||
@import 'components/secondary-button';
|
||||
@import 'components/show-more';
|
||||
@import 'components/message';
|
||||
@import 'components/phone';
|
||||
@import 'components/research-mode';
|
||||
@import 'components/tick-cross';
|
||||
@import 'components/list-entry';
|
||||
@@ -62,9 +61,6 @@ $path: '/static/images/';
|
||||
@import 'components/vendor/breadcrumbs';
|
||||
@import 'components/vendor/responsive-embed';
|
||||
|
||||
@import 'views/job';
|
||||
@import 'views/edit-template';
|
||||
@import 'views/documenation';
|
||||
@import 'views/dashboard';
|
||||
@import 'views/users';
|
||||
@import 'views/api';
|
||||
|
||||
@@ -1,80 +0,0 @@
|
||||
.documentation {
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
margin: $gutter 0 $gutter-half 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
@include heading-48;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
h2 {
|
||||
@include heading-36;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
h3 {
|
||||
@include heading-24;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
@include bold-19;
|
||||
}
|
||||
|
||||
p,
|
||||
ul {
|
||||
margin: 0 0 20px 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
|
||||
list-style: disc;
|
||||
margin: 0 0 20px 20px;
|
||||
|
||||
ul {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
ol {
|
||||
list-style: decimal;
|
||||
margin: 0 0 20px 20px;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 8px solid $border-colour;
|
||||
padding: 0 0 0 20px;
|
||||
margin: 0 0 20px 0;
|
||||
}
|
||||
|
||||
pre,
|
||||
code {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
code {
|
||||
background: $highlight-colour;
|
||||
padding: 2px 5px;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
margin: 0 0 20px 0;
|
||||
background: $highlight-colour;
|
||||
}
|
||||
|
||||
strong,
|
||||
em {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
.placeholder-hint {
|
||||
|
||||
display: block;
|
||||
|
||||
&-title {
|
||||
@include bold-19;
|
||||
}
|
||||
|
||||
&-action {
|
||||
|
||||
@include bold-19;
|
||||
display: inline-block;
|
||||
text-decoration: underline;
|
||||
cursor: pointer;
|
||||
|
||||
&:active {
|
||||
background: $yellow-25;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
.job-totals {
|
||||
margin-top: $gutter;
|
||||
margin-bottom: $gutter;
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
{% macro phone(recipient, message) %}
|
||||
<div class="phone">
|
||||
<div class="phone-speaker"></div>
|
||||
<div class="phone-screen">
|
||||
<h2 class="phone-recipient">
|
||||
<span class="visually-hidden">
|
||||
Example text message
|
||||
</span>
|
||||
To: {{recipient}}
|
||||
</h2>
|
||||
<div class="phone-sms">
|
||||
{{ message }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endmacro %}
|
||||
@@ -1,7 +1,3 @@
|
||||
{% from 'components/big-number.html' import big_number %}
|
||||
{% from "components/banner.html" import banner_wrapper %}
|
||||
{% from "components/phone.html" import phone %}
|
||||
|
||||
{% extends "fullwidth_template.html" %}
|
||||
|
||||
{% block page_title %}
|
||||
|
||||
Reference in New Issue
Block a user