David Humphrey (:humph) david.humphrey@senecacollege.ca 2017-04-19 23:07:50 -04:00 коммит произвёл David Humphrey
Родитель ab33b796f7
Коммит 885a8639ab
4 изменённых файлов: 13 добавлений и 5 удалений

Просмотреть файл

@ -167,7 +167,7 @@ module.exports = function (grunt) {
// XXXBramble: if you change this, change configureExtensions() below too.
"dist/styles/brackets.min.css": [
"src/thirdparty/CodeMirror/lib/codemirror.css",
"src/styles/brackets.less"
"src/styles/bramble.less"
]
},
options: {

Просмотреть файл

@ -105,7 +105,7 @@
<!--(if target dev)><!-->
<link rel="stylesheet" type="text/css" href="thirdparty/CodeMirror/lib/codemirror.css">
<link rel="stylesheet/less" type="text/css" href="styles/brackets.less">
<link rel="stylesheet/less" type="text/css" href="styles/bramble.less">
<!--<!(endif)-->
<!--(if target dist)>
<link rel="stylesheet" type="text/css" href="styles/brackets.min.css">

Просмотреть файл

@ -57,6 +57,3 @@
// Styling for scrollbars
@import url("brackets_scrollbars.less");
// Thimble-specific overrides
@import url("bramble_overrides.less");

11
src/styles/bramble.less Normal file
Просмотреть файл

@ -0,0 +1,11 @@
/**
* This is the root CSS for Bramble. It includes everything Brackets does
* as well as overrides specific to Bramble. Put your rules in bramble_overrides.less
* or create a new file and include it here.
*/
// Brackets root stylesheet
@import url("brackets.less");
// Thimble-specific overrides
@import url("bramble_overrides.less");