Projet

Général

Profil

Paste
Télécharger (1,5 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / bootstrap / bootstrap_subtheme / less / README.txt @ 87dbc3bf

1
The following files are simply duplicates from the Bootstrap library. With
2
modifications in were to reference the imports. In theory, you could replace
3
them if you update the Bootstrap framework by copying them from that framework
4
again. Just make sure to modify the import paths to reference the
5
`./bootstrap/less` folder:
6
```
7
./less/bootstrap.less
8
./less/responsive.less
9
./less/variables.less
10
```
11

    
12
The `./less/variables.less` file is generally where you will spend most of
13
your time customizing the various Bootstrap settings. Feel free to manually
14
edit it or even replace it with a service like
15
[BootTheme](http://www.boottheme.com).
16

    
17
The `./less/fixes.less` file contains various Bootstrap and Drupal fixes. It
18
may contain a few enhancements, feel free to edit this file as you see fit.
19

    
20
The following files are relatively blank (they may contain some code for the
21
inital sub-theme), but this is where you will actually spend most of your time
22
specifying specific styling for your sites configuration.
23
```
24
./less/header.less
25
./less/content.less
26
./less/footer.less
27
```
28

    
29
And finally, the `./less/style.less` file is the glue that holds it all
30
together and compiles everything into one file. Generally, you will not need
31
to modify this file unless you need to add or remove imported files. For
32
example, if you do not want your site to have responsive capabilities, free to
33
comment or remove that line. If you are a file hierarchy wizard and need to
34
separate your theme into multiple files, insert additional `@import '...';`
35
lines.