commit
4f8e5ed309
13 changed files with 148 additions and 11 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
exclude: 'app/assets/stylesheets/reset.scss'
|
||||||
|
|
||||||
linters:
|
linters:
|
||||||
BangFormat:
|
BangFormat:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -12,7 +12,47 @@
|
||||||
// defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
// defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
||||||
// file per style scope.
|
// file per style scope.
|
||||||
//
|
//
|
||||||
// = require_tree .
|
// = require _card
|
||||||
|
// = require _colors
|
||||||
|
// = require _constants
|
||||||
|
// = require _helpers
|
||||||
|
// = require _mixins
|
||||||
|
// = require _placeholders
|
||||||
|
// = require _turbolinks
|
||||||
|
// = require _typography
|
||||||
|
// = require admin_procedures_modal
|
||||||
|
// = require admin_type_de_champ
|
||||||
|
// = require backoffice
|
||||||
|
// = require carte
|
||||||
|
// = require cgu
|
||||||
|
// = require custom_mails
|
||||||
|
// = require default_data_block
|
||||||
|
// = require description
|
||||||
|
// = require dossier_show
|
||||||
|
// = require dossiers
|
||||||
|
// = require etapes
|
||||||
|
// = require fonts
|
||||||
|
// = require france_connect_particulier
|
||||||
|
// = require landing
|
||||||
|
// = require left_panel
|
||||||
|
// = require login
|
||||||
|
// = require main_container
|
||||||
|
// = require navbar
|
||||||
|
// = require notification_alert
|
||||||
|
// = require pieces_justificatives_fields
|
||||||
|
// = require pj_modal
|
||||||
|
// = require pref_list_menu
|
||||||
|
// = require print
|
||||||
|
// = require procedure
|
||||||
|
// = require recapitulatif
|
||||||
|
// = require search
|
||||||
|
// = require siret
|
||||||
|
// = require stats
|
||||||
|
// = require support_navigator_banner
|
||||||
|
// = require switch_menu
|
||||||
|
// = require typeahead
|
||||||
|
// = require users
|
||||||
|
|
||||||
// = require_self
|
// = require_self
|
||||||
// = require bootstrap-datepicker3
|
// = require bootstrap-datepicker3
|
||||||
// = require leaflet
|
// = require leaflet
|
||||||
|
|
7
app/assets/stylesheets/common.scss
Normal file
7
app/assets/stylesheets/common.scss
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
@import "typography";
|
||||||
|
|
||||||
|
body {
|
||||||
|
@extend %new-type;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 1.42857143;
|
||||||
|
}
|
27
app/assets/stylesheets/custom_reset.scss
Normal file
27
app/assets/stylesheets/custom_reset.scss
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
html,
|
||||||
|
body {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
*,
|
||||||
|
*::before,
|
||||||
|
*::after {
|
||||||
|
box-sizing: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
// remove dotted outline on firefox
|
||||||
|
:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-moz-focus-inner {
|
||||||
|
border: none;
|
||||||
|
}
|
|
@ -2,10 +2,8 @@
|
||||||
@import "colors";
|
@import "colors";
|
||||||
@import "mixins";
|
@import "mixins";
|
||||||
@import "placeholders";
|
@import "placeholders";
|
||||||
@import "typography";
|
|
||||||
|
|
||||||
.landing {
|
.landing {
|
||||||
@extend %new-type;
|
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
9
app/assets/stylesheets/new_application.scss
Normal file
9
app/assets/stylesheets/new_application.scss
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
// = require reset
|
||||||
|
// = require custom_reset
|
||||||
|
// = require common
|
||||||
|
// = require utils
|
||||||
|
// = require fonts
|
||||||
|
// = require new_header
|
||||||
|
// = require new_footer
|
||||||
|
// = require landing
|
||||||
|
// = require navbar
|
|
@ -1,10 +1,9 @@
|
||||||
|
@import "colors";
|
||||||
@import "constants";
|
@import "constants";
|
||||||
@import "mixins";
|
@import "mixins";
|
||||||
@import "placeholders";
|
@import "placeholders";
|
||||||
@import "typography";
|
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
@extend %new-type;
|
|
||||||
@include vertical-padding(72px);
|
@include vertical-padding(72px);
|
||||||
background-color: $light-grey;
|
background-color: $light-grey;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,15 +1,11 @@
|
||||||
@import "constants";
|
@import "constants";
|
||||||
@import "colors";
|
@import "colors";
|
||||||
@import "mixins";
|
@import "mixins";
|
||||||
@import "typography";
|
|
||||||
|
|
||||||
// FIXME: Rename when the header is generalized
|
// FIXME: Rename when the header is generalized
|
||||||
.new-header {
|
.new-header {
|
||||||
@extend %new-type;
|
|
||||||
height: 72px;
|
height: 72px;
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
// FIXME: Delete when the header is generalized
|
|
||||||
margin-top: -60px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-inner-content {
|
.header-inner-content {
|
48
app/assets/stylesheets/reset.scss
Normal file
48
app/assets/stylesheets/reset.scss
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
/* http://meyerweb.com/eric/tools/css/reset/
|
||||||
|
v2.0 | 20110126
|
||||||
|
License: none (public domain)
|
||||||
|
*/
|
||||||
|
|
||||||
|
html, body, div, span, applet, object, iframe,
|
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
|
a, abbr, acronym, address, big, cite, code,
|
||||||
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||||
|
small, strike, strong, sub, sup, tt, var,
|
||||||
|
b, u, i, center,
|
||||||
|
dl, dt, dd, ol, ul, li,
|
||||||
|
fieldset, form, label, legend,
|
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||||
|
article, aside, canvas, details, embed,
|
||||||
|
figure, figcaption, footer, header, hgroup,
|
||||||
|
menu, nav, output, ruby, section, summary,
|
||||||
|
time, mark, audio, video {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
font-size: 100%;
|
||||||
|
font: inherit;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
/* HTML5 display-role reset for older browsers */
|
||||||
|
article, aside, details, figcaption, figure,
|
||||||
|
footer, header, hgroup, menu, nav, section {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
ol, ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
blockquote, q {
|
||||||
|
quotes: none;
|
||||||
|
}
|
||||||
|
blockquote:before, blockquote:after,
|
||||||
|
q:before, q:after {
|
||||||
|
content: '';
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
11
app/assets/stylesheets/utils.scss
Normal file
11
app/assets/stylesheets/utils.scss
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
.pull-left {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pull-right {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clearfix {
|
||||||
|
clear: both;
|
||||||
|
}
|
|
@ -13,7 +13,7 @@
|
||||||
= favicon_link_tag(image_url("favicons/32x32.png"), type: "image/png", sizes: "32x32")
|
= favicon_link_tag(image_url("favicons/32x32.png"), type: "image/png", sizes: "32x32")
|
||||||
= favicon_link_tag(image_url("favicons/96x96.png"), type: "image/png", sizes: "96x96")
|
= favicon_link_tag(image_url("favicons/96x96.png"), type: "image/png", sizes: "96x96")
|
||||||
|
|
||||||
= stylesheet_link_tag "application", :media => "all", "data-turbolinks-track" => true
|
= stylesheet_link_tag "new_application", :media => "all", "data-turbolinks-track" => true
|
||||||
= stylesheet_link_tag "print", :media => "print", "data-turbolinks-track" => true
|
= stylesheet_link_tag "print", :media => "print", "data-turbolinks-track" => true
|
||||||
|
|
||||||
%body
|
%body
|
||||||
|
|
|
@ -8,4 +8,4 @@ Rails.application.config.assets.version = '1.0'
|
||||||
|
|
||||||
# Precompile additional assets.
|
# Precompile additional assets.
|
||||||
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
||||||
Rails.application.config.assets.precompile += %w(print.css)
|
Rails.application.config.assets.precompile += %w(print.css new_application.css)
|
||||||
|
|
Loading…
Reference in a new issue