Skip to content

Commit b2a9193

Browse files
committed
Some wording updated
1 parent 56d84fd commit b2a9193

File tree

1 file changed

+8
-7
lines changed
  • BlogEngine/BlogEngine.NET/admin/themes/standard

1 file changed

+8
-7
lines changed
Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
11
# Work on styles in BlogEngine's admin
22

3-
Admin of BlogEnigne is implemented by Sass(scss) preprocessor, so if you want to work on CSS styles, you should know how Sass works. so if you know, follow these steps to compile the Sass.
3+
BlogEnigne uses Sass (scss) preprocessor to build CSS styles for admin theme.
4+
Please follow these steps to convert .scss files into CSS styles.
45

5-
The simple way for Windows users:
6+
The simplest way for Windows users:
67

78
1. Download and install the latest version of [RubyInstaller].
89

9-
2. In your command prompt type and run:
10+
2. In the command prompt, type and run following command:
1011

1112
`gem install sass`
1213

13-
3. Then you have to change directory of command prompt to:
14+
3. Change directory in command prompt to match path to admin theme in your project
1415

15-
For you might be in different path.
16+
For example:
1617

1718
`cd D:\BlogEngine\BlogEngine.NET\admin\themes\standard\`
1819

19-
4. Then for compile on saving file, you have to only run this command:
20+
4. Run this command to start file watcher:
2021

2122
`sass --watch scss/styles.scss:css/styles.css --style compressed`
2223

23-
This command will wait until you change the `.scss` files, then will compile automatically.
24+
This will monitor any changes in the .scss files and convert them into CSS on the fly.
2425

2526
[rubyinstaller]: http://rubyinstaller.org/downloads/

0 commit comments

Comments
 (0)