Merge branch 'develop'
This commit is contained in:
commit
0d3b6002ed
15 changed files with 100 additions and 13 deletions
Binary file not shown.
BIN
.gulp/index.ts
BIN
.gulp/index.ts
Binary file not shown.
BIN
.gulp/tasks/changelog-title.ts
Normal file
BIN
.gulp/tasks/changelog-title.ts
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -1,7 +1,22 @@
|
|||
# Change Log
|
||||
# Material Theme Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
<a name="1.5.0"></a>
|
||||
# [1.5.0](https://github.com/equinusocio/vsc-material-theme/compare/v1.4.0...v1.5.0) (2018-03-08)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Add support for the new notifications UX ([008bac1](https://github.com/equinusocio/vsc-material-theme/commit/008bac1))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* Highlight line number on selected line ([cf69a74](https://github.com/equinusocio/vsc-material-theme/commit/cf69a74))
|
||||
|
||||
|
||||
|
||||
<a name="1.4.0"></a>
|
||||
# [1.4.0](https://github.com/equinusocio/vsc-material-theme/compare/v1.3.0...v1.4.0) (2018-02-19)
|
||||
|
||||
|
|
13
README.md
13
README.md
|
@ -1,6 +1,5 @@
|
|||
|
||||
<p align="center"><img width="620px" src="https://i.imgur.com/77xXWrA.jpg"/></p>
|
||||
<p align="center"><img width="450px" src="https://i.imgur.com/JXb5aRO.jpg"></p>
|
||||
<p align="center"><img width="980px" src="https://image.ibb.co/mGCtnn/Material_Theme.gif"></p>
|
||||
|
||||
[![Twitter](https://img.shields.io/twitter/url/https/github.com/equinusocio/vsc-material-theme.svg?style=flat-square)](https://twitter.com/intent/tweet?text=This%20is%20the%20most%20epic%20theme:&url=https%3A%2F%2Fgithub.com%2Fequinusocio%2Fvsc-material-theme)
|
||||
[![GitHub tag](https://img.shields.io/github/release/equinusocio/vsc-material-theme.svg?style=flat-square)](https://github.com/equinusocio/vsc-material-theme/releases)
|
||||
|
@ -27,6 +26,16 @@ The most epic theme meets Visual Studio Code. You can help by reporting issues [
|
|||
|
||||
<!-- /TOC -->
|
||||
|
||||
<details>
|
||||
<summary>Screenshots</summary>
|
||||
<p align="center">
|
||||
<img src="https://image.ibb.co/jUrdnn/material_theme_lighter.png" border="0">
|
||||
<img src="https://image.ibb.co/gF6dnn/material_theme_default.png" border="0">
|
||||
<img src="https://image.ibb.co/gSW007/material_theme_darker.png" border="0">
|
||||
<img src="https://image.ibb.co/jnBdnn/material_theme_palenight.png" border="0">
|
||||
</p>
|
||||
</details>
|
||||
|
||||
# Getting started
|
||||
|
||||
You can install this awesome theme through the [Visual Studio Code Marketplace](https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-material-theme).
|
||||
|
|
Binary file not shown.
|
@ -35,7 +35,7 @@
|
|||
"_folder_ci_open"
|
||||
],
|
||||
"changelog": {
|
||||
"lastversion": "1.3.0"
|
||||
"lastversion": "1.5.0"
|
||||
},
|
||||
"icons": {
|
||||
"theme": {
|
||||
|
|
Binary file not shown.
BIN
logo.png
BIN
logo.png
Binary file not shown.
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 262 KiB |
2
package-lock.json
generated
2
package-lock.json
generated
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "vsc-material-theme",
|
||||
"version": "1.4.0",
|
||||
"version": "1.5.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
18
package.json
18
package.json
|
@ -2,12 +2,10 @@
|
|||
"name": "vsc-material-theme",
|
||||
"displayName": "Material Theme",
|
||||
"description": "The most epic theme now for Visual Studio Code",
|
||||
"version": "1.4.0",
|
||||
"version": "1.5.0",
|
||||
"publisher": "Equinusocio",
|
||||
"license": "Apache-2.0",
|
||||
"contributors": [
|
||||
"Paolo Roth [@OctoD]"
|
||||
],
|
||||
"author": "Mattia Astorino [@equinusocio]",
|
||||
"icon": "logo.png",
|
||||
"galleryBanner": {
|
||||
"color": "#263238",
|
||||
|
@ -24,6 +22,11 @@
|
|||
"engines": {
|
||||
"vscode": "^1.19.0"
|
||||
},
|
||||
"standard-version": {
|
||||
"scripts": {
|
||||
"postchangelog": "yarn gulp changelog-title"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build": "yarn build-icons && yarn build-themes && yarn build-icons-accents && yarn build-icons-variants",
|
||||
"minimize-icons": "svgo -f src/icons/svgs -o icons/",
|
||||
|
@ -48,10 +51,9 @@
|
|||
"contributes": {
|
||||
"commands": [
|
||||
{
|
||||
"category": "Material theme",
|
||||
"category": "🎨 Material theme",
|
||||
"command": "material.theme.config",
|
||||
"title": "Settings",
|
||||
"icon": "./icons/ai.svg"
|
||||
"title": "Settings"
|
||||
}
|
||||
],
|
||||
"configuration": {
|
||||
|
@ -72,7 +74,7 @@
|
|||
"themes": [
|
||||
{
|
||||
"label": "Material Theme",
|
||||
"path": "./themes/Material-Theme-Darker.json",
|
||||
"path": "./themes/Material-Theme-Palenight.json",
|
||||
"uiTheme": "vs-dark"
|
||||
}
|
||||
],
|
||||
|
|
Binary file not shown.
61
test/source.css
vendored
61
test/source.css
vendored
|
@ -0,0 +1,61 @@
|
|||
|
||||
body {
|
||||
font-family: arial;
|
||||
}
|
||||
|
||||
h1, p, table {
|
||||
background-color:#CCC;
|
||||
border: 1px solid;
|
||||
color:#39F;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.addon-store .pagehead h1
|
||||
.addon-store .addon-summary:after { clear: both }
|
||||
|
||||
#addon-store .pagehead .electrocat-small {
|
||||
bottom: -7px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.addon-store .addons-nav a.selected {
|
||||
border-bottom-color: #d26911;
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
padding: 0 0 14px;
|
||||
}
|
||||
|
||||
.addon-store .addon-icon {
|
||||
background: #fff;
|
||||
border: 1px solid #ddd;
|
||||
box-shadow: 0 1px 2px rgba(0,0,0,0.15);
|
||||
float: left;
|
||||
height: 80px;
|
||||
margin-right: 14px;
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.addon-store .developer-callout {
|
||||
background-color: #f1f1f1;
|
||||
background-image: -moz-linear-gradient(#fafafa, #f1f1f1);
|
||||
background-image: -webkit-linear-gradient(#fafafa, #f1f1f1);
|
||||
background-image: linear-gradient(#fafafa, #f1f1f1);
|
||||
background-repeat: repeat-x;
|
||||
border: 1px solid #ddd;
|
||||
border-bottom: 1px solid #ccc;
|
||||
border-radius: 3px;
|
||||
box-shadow: inset 0 1px 0 #fff, 0 1px 5px #f1f1f1;
|
||||
margin-top: 40px;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
}
|
||||
|
||||
.addon-field-editor .addon-field-list, .addon-field-editor .addon-new-field {
|
||||
-moz-box-sizing: border-box;
|
||||
border-radius: 3px;
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
width: 595px;
|
||||
}
|
Loading…
Reference in a new issue