J
J
japaka2016-11-27 18:47:11
git
japaka, 2016-11-27 18:47:11

Why doesn't smartgit see subfolders?

Good afternoon!
Tell me, what needs to be done so that folders nested in the local repository are visible in smartgit?
Those. not just files in one heap, but still divided into folders.

Answer the question

In order to leave comments, you need to log in

4 answer(s)
N
Nwton, 2017-03-16
@Nwton

Split your css into two files.
1) In one, you store common styles (font, background, styles of the main blocks) and load it before the body, so that when the page loads, the user already sees something and understands where he went.
2) In the second, you leave additional styles for modal windows, icons, comments, and other things. You include this file before closing the body, thereby speeding up page loading.

S
Sergey, 2017-03-16
@Hando

When you are developing, it makes more sense for you to break down the styles according to a methodology that is convenient for you, so that there are no huge footcloths of styles. Then a task manager, such as gulp, automatically compresses and merges everything into 1 file during the build of the project in production. As for the footer, I personally don't really like this idea. Styles are not, in my opinion, what should be loaded from the footer. But this is up to you. But certainly 10 different css files in production is bad form.

A
Artur Karapetyan, 2017-03-16
@architawr

You take and create yes css file one header.css, and another main.css
all the content that fits into the first screen is styled in the header.css file, and the rest in main.css . Then, when the whole site is ready, you take and insert the minified header.css into the head in the style tag. That's all profit! True, in HTML 5.2, you can include styles at the end before body, so you decide for yourself. The advantage of the first option is that you hack google page speed and it shows good results. Can be automated with Gulp

K
k0nsu1, 2017-03-16
@k0nsu1

Ideally, collect all auxiliary css in 1 file and minify and include in the footer. The main style file is also minified and included in the head

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question