Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
73154ae174 |
@@ -0,0 +1,12 @@
|
|||||||
|
Before reporting, make sure you check our [official documentation](https://docs.chamilo.org).
|
||||||
|
|
||||||
|
If you are fairly sure you found an issue, please use the following template (remove things in other languages than your own and remove these 2 first lines).
|
||||||
|
|
||||||
|
### Current behavior / Resultado actual / Résultat actuel
|
||||||
|
|
||||||
|
### Expected behavior / Resultado esperado / Résultat attendu
|
||||||
|
|
||||||
|
### Steps to reproduce / Pasos para reproducir / Étapes pour reproduire
|
||||||
|
|
||||||
|
### Chamilo Version / Versión de Chamilo / Version de Chamilo
|
||||||
|
|
||||||
@@ -0,0 +1,196 @@
|
|||||||
|
name: Behat tests 1.11.x 🐞
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
|
||||||
|
runs-on: ubuntu-24.04
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
operating-system: [ubuntu-latest]
|
||||||
|
php-versions: ['7.4']
|
||||||
|
|
||||||
|
services:
|
||||||
|
mysql:
|
||||||
|
image: mysql:latest
|
||||||
|
env:
|
||||||
|
MYSQL_ALLOW_EMPTY_PASSWORD: false
|
||||||
|
MYSQL_ROOT_PASSWORD: root
|
||||||
|
MYSQL_DATABASE: chamilo
|
||||||
|
ports:
|
||||||
|
- 3306/tcp
|
||||||
|
options: >-
|
||||||
|
--health-cmd="mysqladmin ping"
|
||||||
|
--health-interval=10s
|
||||||
|
--health-timeout=5s
|
||||||
|
--health-retries=3
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Setup apache
|
||||||
|
run: |
|
||||||
|
sudo apt-get install software-properties-common
|
||||||
|
sudo add-apt-repository ppa:ondrej/php
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install apache2 php${{ matrix.php-versions }} php${{ matrix.php-versions }}-common php${{ matrix.php-versions }}-cli libapache2-mod-php${{ matrix.php-versions }}
|
||||||
|
sudo a2enmod rewrite actions
|
||||||
|
sudo cp -f tests/travis/gh-apache /etc/apache2/sites-available/000-default.conf
|
||||||
|
sudo chmod 777 -R $HOME
|
||||||
|
cat /etc/apache2/sites-available/000-default.conf
|
||||||
|
sudo systemctl restart apache2
|
||||||
|
|
||||||
|
- name: Setup PHP, with composer and extensions
|
||||||
|
uses: shivammathur/setup-php@v2
|
||||||
|
with:
|
||||||
|
php-version: ${{ matrix.php-versions }}
|
||||||
|
extensions: mbstring, xml, ctype, iconv, intl, pdo, pdo_mysql, mysqli, dom, gd, json, soap, zip, bcmath
|
||||||
|
ini-values: post_max_size=256M, max_execution_time=600, memory_limit=4096M
|
||||||
|
tools: composer:v2
|
||||||
|
|
||||||
|
- name: Get composer cache directory
|
||||||
|
id: composer-cache-v1
|
||||||
|
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Cache composer dependencies
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: ${{ steps.composer-cache-v1.outputs.dir }}
|
||||||
|
# Use composer.json for key, if composer.lock is not committed.
|
||||||
|
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
||||||
|
key: v1-${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
||||||
|
restore-keys: v1-${{ runner.os }}-composer-
|
||||||
|
|
||||||
|
- name: Install dependencies with composer
|
||||||
|
run: php7.4 /usr/local/bin/composer install --prefer-dist --no-progress
|
||||||
|
|
||||||
|
# - name: Install assets
|
||||||
|
# run: php bin/console assets:install
|
||||||
|
#
|
||||||
|
# - name: Generate fos_js_routes.json
|
||||||
|
# run: php bin/console fos:js-routing:dump --format=json --target=public/js/fos_js_routes.json
|
||||||
|
|
||||||
|
# - name: Get yarn cache directory
|
||||||
|
# id: yarn-cache
|
||||||
|
# run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
|
||||||
|
#
|
||||||
|
# - name: Cache yarn dependencies
|
||||||
|
# uses: actions/cache@v2
|
||||||
|
# with:
|
||||||
|
# path: ${{ steps.yarn-cache.outputs.dir }}
|
||||||
|
# # Use composer.json for key, if composer.lock is not committed.
|
||||||
|
# # key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
||||||
|
# key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||||
|
# restore-keys: ${{ runner.os }}-yarn-
|
||||||
|
#
|
||||||
|
# - name: Yarn install
|
||||||
|
# uses: borales/actions-yarn@v2.3.0
|
||||||
|
# with:
|
||||||
|
# cmd: install # will run `yarn install` command
|
||||||
|
#
|
||||||
|
# - name: Yarn run encore dev
|
||||||
|
# uses: borales/actions-yarn@v2.3.0
|
||||||
|
# with:
|
||||||
|
# cmd: run encore dev
|
||||||
|
|
||||||
|
- name: Install chrome
|
||||||
|
uses: browser-actions/setup-chrome@v1
|
||||||
|
id: setup-chrome
|
||||||
|
|
||||||
|
- name: Start chrome
|
||||||
|
run: |
|
||||||
|
${{ steps.setup-chrome.outputs.chrome-path }} --version
|
||||||
|
${{ steps.setup-chrome.outputs.chrome-path }} --headless --disable-gpu --remote-debugging-port=9222 http://localhost &
|
||||||
|
|
||||||
|
# https://github.com/marketplace/actions/setup-chromedriver
|
||||||
|
- name: Start chromedriver
|
||||||
|
uses: nanasess/setup-chromedriver@master
|
||||||
|
with:
|
||||||
|
# Optional: do not specify to match Chrome's version
|
||||||
|
chromedriver-version: '100.0.4896.60'
|
||||||
|
|
||||||
|
- run: |
|
||||||
|
export DISPLAY=:99
|
||||||
|
chromedriver --url-base=/wd/hub &
|
||||||
|
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional
|
||||||
|
|
||||||
|
# wget https://chromedriver.storage.googleapis.com/88.0.4324.96/chromedriver_linux64.zip --quiet && unzip chromedriver_linux64.zip
|
||||||
|
# sudo mv chromedriver /usr/bin
|
||||||
|
# sudo chmod +x /usr/bin/chromedriver
|
||||||
|
# chromedriver --version
|
||||||
|
|
||||||
|
# - run: |
|
||||||
|
# export DISPLAY=:99
|
||||||
|
# chromedriver --url-base=/wd/hub &
|
||||||
|
# sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional
|
||||||
|
# chromedriver --version
|
||||||
|
|
||||||
|
- name: Set up JDK 1.8
|
||||||
|
uses: actions/setup-java@v1
|
||||||
|
with:
|
||||||
|
java-version: 1.8
|
||||||
|
|
||||||
|
- name: Get Selenium
|
||||||
|
run: |
|
||||||
|
wget http://selenium-release.storage.googleapis.com/3.141/selenium-server-standalone-3.141.59.jar --quiet
|
||||||
|
|
||||||
|
- name: Run Selenium
|
||||||
|
run: |
|
||||||
|
java -version
|
||||||
|
export DISPLAY=:99.0
|
||||||
|
sudo xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 &
|
||||||
|
java -Dwebdriver.chrome.driver=/usr/bin/chromedriver -jar selenium-server-standalone-3.141.59.jar -log selenium.log > /dev/null &
|
||||||
|
|
||||||
|
- name: Start mysql service
|
||||||
|
run: |
|
||||||
|
sudo /etc/init.d/mysql start
|
||||||
|
sudo systemctl restart apache2
|
||||||
|
#
|
||||||
|
# - name: Install database
|
||||||
|
# run: |
|
||||||
|
# bin/console doctrine:database:create || echo "Error while creating the DB"
|
||||||
|
# env:
|
||||||
|
# DATABASE_URL: mysql://root:root@127.0.0.1:${{ job.services.mysql.ports['3306'] }}/chamilo
|
||||||
|
# DATABASE_HOST: 127.0.0.1
|
||||||
|
# DATABASE_PORT: ${{ job.services.mysql.ports['3306'] }}
|
||||||
|
# DATABASE_NAME: chamilo
|
||||||
|
# DATABASE_USER: root
|
||||||
|
# DATABASE_PASSWORD: root
|
||||||
|
# APP_INSTALLED: 1
|
||||||
|
|
||||||
|
- name: Check settings
|
||||||
|
run: |
|
||||||
|
php -ini
|
||||||
|
php -v
|
||||||
|
php -m
|
||||||
|
|
||||||
|
- name: Install chash
|
||||||
|
run: |
|
||||||
|
git clone https://github.com/chamilo/chash
|
||||||
|
cd chash
|
||||||
|
git checkout 0.2.x
|
||||||
|
php7.4 /usr/local/bin/composer install
|
||||||
|
php7.4 -d phar.readonly=0 createPhar.php
|
||||||
|
chmod +x chash.phar
|
||||||
|
sudo mv chash.phar /usr/local/bin/chash
|
||||||
|
|
||||||
|
- name: Install chamilo
|
||||||
|
run: |
|
||||||
|
php7.4 ${{ github.workspace }}/chash/chash.php chash:chamilo_install 1.11.x ${{ github.workspace }} --no-interaction --sitename="Chamilo" --site_url="http://localhost/" --institution="Chamilo" --institution_url="https://chamilo.org" --encrypt_method="sha1" --firstname="John" --lastname="Doe" --language="english" --driver="pdo_mysql" --host="localhost" --port="3306" --dbname="chamilo" --dbuser="root" --dbpassword="root" --permissions_for_new_directories="0777" --permissions_for_new_files="0666" --linux-user="www-data" --linux-group="www-data" --username="admin" --password="admin" --email="admin@example.com" --phone="555-5555"
|
||||||
|
php7.4 ${{ github.workspace }}/chash/chash.php chash:chamilo_status
|
||||||
|
sudo chmod -R 777 app/cache app/logs app/courses app/upload web
|
||||||
|
bash tests/travis/post_installation.sh
|
||||||
|
sudo cp -f tests/travis/gh-apache /etc/apache2/sites-available/000-default.conf
|
||||||
|
sudo systemctl restart apache2
|
||||||
|
curl http://localhost/index.php
|
||||||
|
|
||||||
|
- name: Behat tests
|
||||||
|
run: |
|
||||||
|
cd ${{ github.workspace }}/tests/behat
|
||||||
|
../../vendor/behat/behat/bin/behat -vvv
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
name: PHP-CS-Fixer
|
||||||
|
|
||||||
|
on: [ push, pull_request ]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
composer_install:
|
||||||
|
runs-on: ubuntu-24.04
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
php-versions: ['7.4']
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 2
|
||||||
|
|
||||||
|
- name: Setup PHP
|
||||||
|
uses: shivammathur/setup-php@v2
|
||||||
|
with:
|
||||||
|
php-version: ${{ matrix.php-versions }}
|
||||||
|
extensions: mbstring, xml, ctype, iconv, intl, pdo, pdo_mysql, dom, gd, json, soap, zip, bcmath
|
||||||
|
ini-values: post_max_size=256M, max_execution_time=600, memory_limit=4096M
|
||||||
|
|
||||||
|
- name: Get composer cache directory
|
||||||
|
id: composer-cache
|
||||||
|
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Cache composer downloads
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: ${{ steps.composer-cache.outputs.dir }}
|
||||||
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
||||||
|
restore-keys: ${{ runner.os }}-composer-
|
||||||
|
|
||||||
|
- name: Run composer install
|
||||||
|
run: composer install --prefer-dist --no-progress
|
||||||
|
|
||||||
|
- name: Download PHP-CS-Fixer
|
||||||
|
run: |
|
||||||
|
wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v3.4.0/php-cs-fixer.phar
|
||||||
|
|
||||||
|
- name: Run PHP-CS-Fixer
|
||||||
|
run: |
|
||||||
|
IFS='
|
||||||
|
'
|
||||||
|
CHANGED_FILES=$(git diff --name-only --diff-filter=ACMRTUXB "HEAD~..HEAD")
|
||||||
|
if ! echo "${CHANGED_FILES}" | grep -qE "^(\\.php-cs-fixer(\\.dist)?\\.php|composer\\.lock)$"; then EXTRA_ARGS=$(printf -- '--path-mode=intersection\n--\n%s' "${CHANGED_FILES}"); else EXTRA_ARGS=''; fi
|
||||||
|
php ./php-cs-fixer.phar fix --config=.php-cs-fixer.php -v --dry-run --using-cache=no --diff ${EXTRA_ARGS}
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
/*!
|
/*!
|
||||||
* Bootstrap-select v1.13.17 (https://developer.snapappointments.com/bootstrap-select)
|
* Bootstrap-select v1.13.17 (https://developer.snapappointments.com/bootstrap-select)
|
||||||
*
|
*
|
||||||
* Copyright 2012-2020 SnapAppointments, LLC
|
* Copyright 2012-2020 SnapAppointments, LLC
|
||||||
* Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
|
* Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@-webkit-keyframes bs-notify-fadeOut {
|
@-webkit-keyframes bs-notify-fadeOut {
|
||||||
0% {
|
0% {
|
||||||
opacity: 0.9;
|
opacity: 0.9;
|
||||||
|
|||||||
+5
-5
File diff suppressed because one or more lines are too long
+298
-298
@@ -24,155 +24,155 @@ function getCjsExportFromNamespace (n) {
|
|||||||
return n && n['default'] || n;
|
return n && n['default'] || n;
|
||||||
}
|
}
|
||||||
|
|
||||||
var colorName = {
|
var colorName = {
|
||||||
"aliceblue": [240, 248, 255],
|
"aliceblue": [240, 248, 255],
|
||||||
"antiquewhite": [250, 235, 215],
|
"antiquewhite": [250, 235, 215],
|
||||||
"aqua": [0, 255, 255],
|
"aqua": [0, 255, 255],
|
||||||
"aquamarine": [127, 255, 212],
|
"aquamarine": [127, 255, 212],
|
||||||
"azure": [240, 255, 255],
|
"azure": [240, 255, 255],
|
||||||
"beige": [245, 245, 220],
|
"beige": [245, 245, 220],
|
||||||
"bisque": [255, 228, 196],
|
"bisque": [255, 228, 196],
|
||||||
"black": [0, 0, 0],
|
"black": [0, 0, 0],
|
||||||
"blanchedalmond": [255, 235, 205],
|
"blanchedalmond": [255, 235, 205],
|
||||||
"blue": [0, 0, 255],
|
"blue": [0, 0, 255],
|
||||||
"blueviolet": [138, 43, 226],
|
"blueviolet": [138, 43, 226],
|
||||||
"brown": [165, 42, 42],
|
"brown": [165, 42, 42],
|
||||||
"burlywood": [222, 184, 135],
|
"burlywood": [222, 184, 135],
|
||||||
"cadetblue": [95, 158, 160],
|
"cadetblue": [95, 158, 160],
|
||||||
"chartreuse": [127, 255, 0],
|
"chartreuse": [127, 255, 0],
|
||||||
"chocolate": [210, 105, 30],
|
"chocolate": [210, 105, 30],
|
||||||
"coral": [255, 127, 80],
|
"coral": [255, 127, 80],
|
||||||
"cornflowerblue": [100, 149, 237],
|
"cornflowerblue": [100, 149, 237],
|
||||||
"cornsilk": [255, 248, 220],
|
"cornsilk": [255, 248, 220],
|
||||||
"crimson": [220, 20, 60],
|
"crimson": [220, 20, 60],
|
||||||
"cyan": [0, 255, 255],
|
"cyan": [0, 255, 255],
|
||||||
"darkblue": [0, 0, 139],
|
"darkblue": [0, 0, 139],
|
||||||
"darkcyan": [0, 139, 139],
|
"darkcyan": [0, 139, 139],
|
||||||
"darkgoldenrod": [184, 134, 11],
|
"darkgoldenrod": [184, 134, 11],
|
||||||
"darkgray": [169, 169, 169],
|
"darkgray": [169, 169, 169],
|
||||||
"darkgreen": [0, 100, 0],
|
"darkgreen": [0, 100, 0],
|
||||||
"darkgrey": [169, 169, 169],
|
"darkgrey": [169, 169, 169],
|
||||||
"darkkhaki": [189, 183, 107],
|
"darkkhaki": [189, 183, 107],
|
||||||
"darkmagenta": [139, 0, 139],
|
"darkmagenta": [139, 0, 139],
|
||||||
"darkolivegreen": [85, 107, 47],
|
"darkolivegreen": [85, 107, 47],
|
||||||
"darkorange": [255, 140, 0],
|
"darkorange": [255, 140, 0],
|
||||||
"darkorchid": [153, 50, 204],
|
"darkorchid": [153, 50, 204],
|
||||||
"darkred": [139, 0, 0],
|
"darkred": [139, 0, 0],
|
||||||
"darksalmon": [233, 150, 122],
|
"darksalmon": [233, 150, 122],
|
||||||
"darkseagreen": [143, 188, 143],
|
"darkseagreen": [143, 188, 143],
|
||||||
"darkslateblue": [72, 61, 139],
|
"darkslateblue": [72, 61, 139],
|
||||||
"darkslategray": [47, 79, 79],
|
"darkslategray": [47, 79, 79],
|
||||||
"darkslategrey": [47, 79, 79],
|
"darkslategrey": [47, 79, 79],
|
||||||
"darkturquoise": [0, 206, 209],
|
"darkturquoise": [0, 206, 209],
|
||||||
"darkviolet": [148, 0, 211],
|
"darkviolet": [148, 0, 211],
|
||||||
"deeppink": [255, 20, 147],
|
"deeppink": [255, 20, 147],
|
||||||
"deepskyblue": [0, 191, 255],
|
"deepskyblue": [0, 191, 255],
|
||||||
"dimgray": [105, 105, 105],
|
"dimgray": [105, 105, 105],
|
||||||
"dimgrey": [105, 105, 105],
|
"dimgrey": [105, 105, 105],
|
||||||
"dodgerblue": [30, 144, 255],
|
"dodgerblue": [30, 144, 255],
|
||||||
"firebrick": [178, 34, 34],
|
"firebrick": [178, 34, 34],
|
||||||
"floralwhite": [255, 250, 240],
|
"floralwhite": [255, 250, 240],
|
||||||
"forestgreen": [34, 139, 34],
|
"forestgreen": [34, 139, 34],
|
||||||
"fuchsia": [255, 0, 255],
|
"fuchsia": [255, 0, 255],
|
||||||
"gainsboro": [220, 220, 220],
|
"gainsboro": [220, 220, 220],
|
||||||
"ghostwhite": [248, 248, 255],
|
"ghostwhite": [248, 248, 255],
|
||||||
"gold": [255, 215, 0],
|
"gold": [255, 215, 0],
|
||||||
"goldenrod": [218, 165, 32],
|
"goldenrod": [218, 165, 32],
|
||||||
"gray": [128, 128, 128],
|
"gray": [128, 128, 128],
|
||||||
"green": [0, 128, 0],
|
"green": [0, 128, 0],
|
||||||
"greenyellow": [173, 255, 47],
|
"greenyellow": [173, 255, 47],
|
||||||
"grey": [128, 128, 128],
|
"grey": [128, 128, 128],
|
||||||
"honeydew": [240, 255, 240],
|
"honeydew": [240, 255, 240],
|
||||||
"hotpink": [255, 105, 180],
|
"hotpink": [255, 105, 180],
|
||||||
"indianred": [205, 92, 92],
|
"indianred": [205, 92, 92],
|
||||||
"indigo": [75, 0, 130],
|
"indigo": [75, 0, 130],
|
||||||
"ivory": [255, 255, 240],
|
"ivory": [255, 255, 240],
|
||||||
"khaki": [240, 230, 140],
|
"khaki": [240, 230, 140],
|
||||||
"lavender": [230, 230, 250],
|
"lavender": [230, 230, 250],
|
||||||
"lavenderblush": [255, 240, 245],
|
"lavenderblush": [255, 240, 245],
|
||||||
"lawngreen": [124, 252, 0],
|
"lawngreen": [124, 252, 0],
|
||||||
"lemonchiffon": [255, 250, 205],
|
"lemonchiffon": [255, 250, 205],
|
||||||
"lightblue": [173, 216, 230],
|
"lightblue": [173, 216, 230],
|
||||||
"lightcoral": [240, 128, 128],
|
"lightcoral": [240, 128, 128],
|
||||||
"lightcyan": [224, 255, 255],
|
"lightcyan": [224, 255, 255],
|
||||||
"lightgoldenrodyellow": [250, 250, 210],
|
"lightgoldenrodyellow": [250, 250, 210],
|
||||||
"lightgray": [211, 211, 211],
|
"lightgray": [211, 211, 211],
|
||||||
"lightgreen": [144, 238, 144],
|
"lightgreen": [144, 238, 144],
|
||||||
"lightgrey": [211, 211, 211],
|
"lightgrey": [211, 211, 211],
|
||||||
"lightpink": [255, 182, 193],
|
"lightpink": [255, 182, 193],
|
||||||
"lightsalmon": [255, 160, 122],
|
"lightsalmon": [255, 160, 122],
|
||||||
"lightseagreen": [32, 178, 170],
|
"lightseagreen": [32, 178, 170],
|
||||||
"lightskyblue": [135, 206, 250],
|
"lightskyblue": [135, 206, 250],
|
||||||
"lightslategray": [119, 136, 153],
|
"lightslategray": [119, 136, 153],
|
||||||
"lightslategrey": [119, 136, 153],
|
"lightslategrey": [119, 136, 153],
|
||||||
"lightsteelblue": [176, 196, 222],
|
"lightsteelblue": [176, 196, 222],
|
||||||
"lightyellow": [255, 255, 224],
|
"lightyellow": [255, 255, 224],
|
||||||
"lime": [0, 255, 0],
|
"lime": [0, 255, 0],
|
||||||
"limegreen": [50, 205, 50],
|
"limegreen": [50, 205, 50],
|
||||||
"linen": [250, 240, 230],
|
"linen": [250, 240, 230],
|
||||||
"magenta": [255, 0, 255],
|
"magenta": [255, 0, 255],
|
||||||
"maroon": [128, 0, 0],
|
"maroon": [128, 0, 0],
|
||||||
"mediumaquamarine": [102, 205, 170],
|
"mediumaquamarine": [102, 205, 170],
|
||||||
"mediumblue": [0, 0, 205],
|
"mediumblue": [0, 0, 205],
|
||||||
"mediumorchid": [186, 85, 211],
|
"mediumorchid": [186, 85, 211],
|
||||||
"mediumpurple": [147, 112, 219],
|
"mediumpurple": [147, 112, 219],
|
||||||
"mediumseagreen": [60, 179, 113],
|
"mediumseagreen": [60, 179, 113],
|
||||||
"mediumslateblue": [123, 104, 238],
|
"mediumslateblue": [123, 104, 238],
|
||||||
"mediumspringgreen": [0, 250, 154],
|
"mediumspringgreen": [0, 250, 154],
|
||||||
"mediumturquoise": [72, 209, 204],
|
"mediumturquoise": [72, 209, 204],
|
||||||
"mediumvioletred": [199, 21, 133],
|
"mediumvioletred": [199, 21, 133],
|
||||||
"midnightblue": [25, 25, 112],
|
"midnightblue": [25, 25, 112],
|
||||||
"mintcream": [245, 255, 250],
|
"mintcream": [245, 255, 250],
|
||||||
"mistyrose": [255, 228, 225],
|
"mistyrose": [255, 228, 225],
|
||||||
"moccasin": [255, 228, 181],
|
"moccasin": [255, 228, 181],
|
||||||
"navajowhite": [255, 222, 173],
|
"navajowhite": [255, 222, 173],
|
||||||
"navy": [0, 0, 128],
|
"navy": [0, 0, 128],
|
||||||
"oldlace": [253, 245, 230],
|
"oldlace": [253, 245, 230],
|
||||||
"olive": [128, 128, 0],
|
"olive": [128, 128, 0],
|
||||||
"olivedrab": [107, 142, 35],
|
"olivedrab": [107, 142, 35],
|
||||||
"orange": [255, 165, 0],
|
"orange": [255, 165, 0],
|
||||||
"orangered": [255, 69, 0],
|
"orangered": [255, 69, 0],
|
||||||
"orchid": [218, 112, 214],
|
"orchid": [218, 112, 214],
|
||||||
"palegoldenrod": [238, 232, 170],
|
"palegoldenrod": [238, 232, 170],
|
||||||
"palegreen": [152, 251, 152],
|
"palegreen": [152, 251, 152],
|
||||||
"paleturquoise": [175, 238, 238],
|
"paleturquoise": [175, 238, 238],
|
||||||
"palevioletred": [219, 112, 147],
|
"palevioletred": [219, 112, 147],
|
||||||
"papayawhip": [255, 239, 213],
|
"papayawhip": [255, 239, 213],
|
||||||
"peachpuff": [255, 218, 185],
|
"peachpuff": [255, 218, 185],
|
||||||
"peru": [205, 133, 63],
|
"peru": [205, 133, 63],
|
||||||
"pink": [255, 192, 203],
|
"pink": [255, 192, 203],
|
||||||
"plum": [221, 160, 221],
|
"plum": [221, 160, 221],
|
||||||
"powderblue": [176, 224, 230],
|
"powderblue": [176, 224, 230],
|
||||||
"purple": [128, 0, 128],
|
"purple": [128, 0, 128],
|
||||||
"rebeccapurple": [102, 51, 153],
|
"rebeccapurple": [102, 51, 153],
|
||||||
"red": [255, 0, 0],
|
"red": [255, 0, 0],
|
||||||
"rosybrown": [188, 143, 143],
|
"rosybrown": [188, 143, 143],
|
||||||
"royalblue": [65, 105, 225],
|
"royalblue": [65, 105, 225],
|
||||||
"saddlebrown": [139, 69, 19],
|
"saddlebrown": [139, 69, 19],
|
||||||
"salmon": [250, 128, 114],
|
"salmon": [250, 128, 114],
|
||||||
"sandybrown": [244, 164, 96],
|
"sandybrown": [244, 164, 96],
|
||||||
"seagreen": [46, 139, 87],
|
"seagreen": [46, 139, 87],
|
||||||
"seashell": [255, 245, 238],
|
"seashell": [255, 245, 238],
|
||||||
"sienna": [160, 82, 45],
|
"sienna": [160, 82, 45],
|
||||||
"silver": [192, 192, 192],
|
"silver": [192, 192, 192],
|
||||||
"skyblue": [135, 206, 235],
|
"skyblue": [135, 206, 235],
|
||||||
"slateblue": [106, 90, 205],
|
"slateblue": [106, 90, 205],
|
||||||
"slategray": [112, 128, 144],
|
"slategray": [112, 128, 144],
|
||||||
"slategrey": [112, 128, 144],
|
"slategrey": [112, 128, 144],
|
||||||
"snow": [255, 250, 250],
|
"snow": [255, 250, 250],
|
||||||
"springgreen": [0, 255, 127],
|
"springgreen": [0, 255, 127],
|
||||||
"steelblue": [70, 130, 180],
|
"steelblue": [70, 130, 180],
|
||||||
"tan": [210, 180, 140],
|
"tan": [210, 180, 140],
|
||||||
"teal": [0, 128, 128],
|
"teal": [0, 128, 128],
|
||||||
"thistle": [216, 191, 216],
|
"thistle": [216, 191, 216],
|
||||||
"tomato": [255, 99, 71],
|
"tomato": [255, 99, 71],
|
||||||
"turquoise": [64, 224, 208],
|
"turquoise": [64, 224, 208],
|
||||||
"violet": [238, 130, 238],
|
"violet": [238, 130, 238],
|
||||||
"wheat": [245, 222, 179],
|
"wheat": [245, 222, 179],
|
||||||
"white": [255, 255, 255],
|
"white": [255, 255, 255],
|
||||||
"whitesmoke": [245, 245, 245],
|
"whitesmoke": [245, 245, 245],
|
||||||
"yellow": [255, 255, 0],
|
"yellow": [255, 255, 0],
|
||||||
"yellowgreen": [154, 205, 50]
|
"yellowgreen": [154, 205, 50]
|
||||||
};
|
};
|
||||||
|
|
||||||
var conversions = createCommonjsModule(function (module) {
|
var conversions = createCommonjsModule(function (module) {
|
||||||
@@ -1232,155 +1232,155 @@ models.forEach(function (fromModel) {
|
|||||||
|
|
||||||
var colorConvert = convert;
|
var colorConvert = convert;
|
||||||
|
|
||||||
var colorName$1 = {
|
var colorName$1 = {
|
||||||
"aliceblue": [240, 248, 255],
|
"aliceblue": [240, 248, 255],
|
||||||
"antiquewhite": [250, 235, 215],
|
"antiquewhite": [250, 235, 215],
|
||||||
"aqua": [0, 255, 255],
|
"aqua": [0, 255, 255],
|
||||||
"aquamarine": [127, 255, 212],
|
"aquamarine": [127, 255, 212],
|
||||||
"azure": [240, 255, 255],
|
"azure": [240, 255, 255],
|
||||||
"beige": [245, 245, 220],
|
"beige": [245, 245, 220],
|
||||||
"bisque": [255, 228, 196],
|
"bisque": [255, 228, 196],
|
||||||
"black": [0, 0, 0],
|
"black": [0, 0, 0],
|
||||||
"blanchedalmond": [255, 235, 205],
|
"blanchedalmond": [255, 235, 205],
|
||||||
"blue": [0, 0, 255],
|
"blue": [0, 0, 255],
|
||||||
"blueviolet": [138, 43, 226],
|
"blueviolet": [138, 43, 226],
|
||||||
"brown": [165, 42, 42],
|
"brown": [165, 42, 42],
|
||||||
"burlywood": [222, 184, 135],
|
"burlywood": [222, 184, 135],
|
||||||
"cadetblue": [95, 158, 160],
|
"cadetblue": [95, 158, 160],
|
||||||
"chartreuse": [127, 255, 0],
|
"chartreuse": [127, 255, 0],
|
||||||
"chocolate": [210, 105, 30],
|
"chocolate": [210, 105, 30],
|
||||||
"coral": [255, 127, 80],
|
"coral": [255, 127, 80],
|
||||||
"cornflowerblue": [100, 149, 237],
|
"cornflowerblue": [100, 149, 237],
|
||||||
"cornsilk": [255, 248, 220],
|
"cornsilk": [255, 248, 220],
|
||||||
"crimson": [220, 20, 60],
|
"crimson": [220, 20, 60],
|
||||||
"cyan": [0, 255, 255],
|
"cyan": [0, 255, 255],
|
||||||
"darkblue": [0, 0, 139],
|
"darkblue": [0, 0, 139],
|
||||||
"darkcyan": [0, 139, 139],
|
"darkcyan": [0, 139, 139],
|
||||||
"darkgoldenrod": [184, 134, 11],
|
"darkgoldenrod": [184, 134, 11],
|
||||||
"darkgray": [169, 169, 169],
|
"darkgray": [169, 169, 169],
|
||||||
"darkgreen": [0, 100, 0],
|
"darkgreen": [0, 100, 0],
|
||||||
"darkgrey": [169, 169, 169],
|
"darkgrey": [169, 169, 169],
|
||||||
"darkkhaki": [189, 183, 107],
|
"darkkhaki": [189, 183, 107],
|
||||||
"darkmagenta": [139, 0, 139],
|
"darkmagenta": [139, 0, 139],
|
||||||
"darkolivegreen": [85, 107, 47],
|
"darkolivegreen": [85, 107, 47],
|
||||||
"darkorange": [255, 140, 0],
|
"darkorange": [255, 140, 0],
|
||||||
"darkorchid": [153, 50, 204],
|
"darkorchid": [153, 50, 204],
|
||||||
"darkred": [139, 0, 0],
|
"darkred": [139, 0, 0],
|
||||||
"darksalmon": [233, 150, 122],
|
"darksalmon": [233, 150, 122],
|
||||||
"darkseagreen": [143, 188, 143],
|
"darkseagreen": [143, 188, 143],
|
||||||
"darkslateblue": [72, 61, 139],
|
"darkslateblue": [72, 61, 139],
|
||||||
"darkslategray": [47, 79, 79],
|
"darkslategray": [47, 79, 79],
|
||||||
"darkslategrey": [47, 79, 79],
|
"darkslategrey": [47, 79, 79],
|
||||||
"darkturquoise": [0, 206, 209],
|
"darkturquoise": [0, 206, 209],
|
||||||
"darkviolet": [148, 0, 211],
|
"darkviolet": [148, 0, 211],
|
||||||
"deeppink": [255, 20, 147],
|
"deeppink": [255, 20, 147],
|
||||||
"deepskyblue": [0, 191, 255],
|
"deepskyblue": [0, 191, 255],
|
||||||
"dimgray": [105, 105, 105],
|
"dimgray": [105, 105, 105],
|
||||||
"dimgrey": [105, 105, 105],
|
"dimgrey": [105, 105, 105],
|
||||||
"dodgerblue": [30, 144, 255],
|
"dodgerblue": [30, 144, 255],
|
||||||
"firebrick": [178, 34, 34],
|
"firebrick": [178, 34, 34],
|
||||||
"floralwhite": [255, 250, 240],
|
"floralwhite": [255, 250, 240],
|
||||||
"forestgreen": [34, 139, 34],
|
"forestgreen": [34, 139, 34],
|
||||||
"fuchsia": [255, 0, 255],
|
"fuchsia": [255, 0, 255],
|
||||||
"gainsboro": [220, 220, 220],
|
"gainsboro": [220, 220, 220],
|
||||||
"ghostwhite": [248, 248, 255],
|
"ghostwhite": [248, 248, 255],
|
||||||
"gold": [255, 215, 0],
|
"gold": [255, 215, 0],
|
||||||
"goldenrod": [218, 165, 32],
|
"goldenrod": [218, 165, 32],
|
||||||
"gray": [128, 128, 128],
|
"gray": [128, 128, 128],
|
||||||
"green": [0, 128, 0],
|
"green": [0, 128, 0],
|
||||||
"greenyellow": [173, 255, 47],
|
"greenyellow": [173, 255, 47],
|
||||||
"grey": [128, 128, 128],
|
"grey": [128, 128, 128],
|
||||||
"honeydew": [240, 255, 240],
|
"honeydew": [240, 255, 240],
|
||||||
"hotpink": [255, 105, 180],
|
"hotpink": [255, 105, 180],
|
||||||
"indianred": [205, 92, 92],
|
"indianred": [205, 92, 92],
|
||||||
"indigo": [75, 0, 130],
|
"indigo": [75, 0, 130],
|
||||||
"ivory": [255, 255, 240],
|
"ivory": [255, 255, 240],
|
||||||
"khaki": [240, 230, 140],
|
"khaki": [240, 230, 140],
|
||||||
"lavender": [230, 230, 250],
|
"lavender": [230, 230, 250],
|
||||||
"lavenderblush": [255, 240, 245],
|
"lavenderblush": [255, 240, 245],
|
||||||
"lawngreen": [124, 252, 0],
|
"lawngreen": [124, 252, 0],
|
||||||
"lemonchiffon": [255, 250, 205],
|
"lemonchiffon": [255, 250, 205],
|
||||||
"lightblue": [173, 216, 230],
|
"lightblue": [173, 216, 230],
|
||||||
"lightcoral": [240, 128, 128],
|
"lightcoral": [240, 128, 128],
|
||||||
"lightcyan": [224, 255, 255],
|
"lightcyan": [224, 255, 255],
|
||||||
"lightgoldenrodyellow": [250, 250, 210],
|
"lightgoldenrodyellow": [250, 250, 210],
|
||||||
"lightgray": [211, 211, 211],
|
"lightgray": [211, 211, 211],
|
||||||
"lightgreen": [144, 238, 144],
|
"lightgreen": [144, 238, 144],
|
||||||
"lightgrey": [211, 211, 211],
|
"lightgrey": [211, 211, 211],
|
||||||
"lightpink": [255, 182, 193],
|
"lightpink": [255, 182, 193],
|
||||||
"lightsalmon": [255, 160, 122],
|
"lightsalmon": [255, 160, 122],
|
||||||
"lightseagreen": [32, 178, 170],
|
"lightseagreen": [32, 178, 170],
|
||||||
"lightskyblue": [135, 206, 250],
|
"lightskyblue": [135, 206, 250],
|
||||||
"lightslategray": [119, 136, 153],
|
"lightslategray": [119, 136, 153],
|
||||||
"lightslategrey": [119, 136, 153],
|
"lightslategrey": [119, 136, 153],
|
||||||
"lightsteelblue": [176, 196, 222],
|
"lightsteelblue": [176, 196, 222],
|
||||||
"lightyellow": [255, 255, 224],
|
"lightyellow": [255, 255, 224],
|
||||||
"lime": [0, 255, 0],
|
"lime": [0, 255, 0],
|
||||||
"limegreen": [50, 205, 50],
|
"limegreen": [50, 205, 50],
|
||||||
"linen": [250, 240, 230],
|
"linen": [250, 240, 230],
|
||||||
"magenta": [255, 0, 255],
|
"magenta": [255, 0, 255],
|
||||||
"maroon": [128, 0, 0],
|
"maroon": [128, 0, 0],
|
||||||
"mediumaquamarine": [102, 205, 170],
|
"mediumaquamarine": [102, 205, 170],
|
||||||
"mediumblue": [0, 0, 205],
|
"mediumblue": [0, 0, 205],
|
||||||
"mediumorchid": [186, 85, 211],
|
"mediumorchid": [186, 85, 211],
|
||||||
"mediumpurple": [147, 112, 219],
|
"mediumpurple": [147, 112, 219],
|
||||||
"mediumseagreen": [60, 179, 113],
|
"mediumseagreen": [60, 179, 113],
|
||||||
"mediumslateblue": [123, 104, 238],
|
"mediumslateblue": [123, 104, 238],
|
||||||
"mediumspringgreen": [0, 250, 154],
|
"mediumspringgreen": [0, 250, 154],
|
||||||
"mediumturquoise": [72, 209, 204],
|
"mediumturquoise": [72, 209, 204],
|
||||||
"mediumvioletred": [199, 21, 133],
|
"mediumvioletred": [199, 21, 133],
|
||||||
"midnightblue": [25, 25, 112],
|
"midnightblue": [25, 25, 112],
|
||||||
"mintcream": [245, 255, 250],
|
"mintcream": [245, 255, 250],
|
||||||
"mistyrose": [255, 228, 225],
|
"mistyrose": [255, 228, 225],
|
||||||
"moccasin": [255, 228, 181],
|
"moccasin": [255, 228, 181],
|
||||||
"navajowhite": [255, 222, 173],
|
"navajowhite": [255, 222, 173],
|
||||||
"navy": [0, 0, 128],
|
"navy": [0, 0, 128],
|
||||||
"oldlace": [253, 245, 230],
|
"oldlace": [253, 245, 230],
|
||||||
"olive": [128, 128, 0],
|
"olive": [128, 128, 0],
|
||||||
"olivedrab": [107, 142, 35],
|
"olivedrab": [107, 142, 35],
|
||||||
"orange": [255, 165, 0],
|
"orange": [255, 165, 0],
|
||||||
"orangered": [255, 69, 0],
|
"orangered": [255, 69, 0],
|
||||||
"orchid": [218, 112, 214],
|
"orchid": [218, 112, 214],
|
||||||
"palegoldenrod": [238, 232, 170],
|
"palegoldenrod": [238, 232, 170],
|
||||||
"palegreen": [152, 251, 152],
|
"palegreen": [152, 251, 152],
|
||||||
"paleturquoise": [175, 238, 238],
|
"paleturquoise": [175, 238, 238],
|
||||||
"palevioletred": [219, 112, 147],
|
"palevioletred": [219, 112, 147],
|
||||||
"papayawhip": [255, 239, 213],
|
"papayawhip": [255, 239, 213],
|
||||||
"peachpuff": [255, 218, 185],
|
"peachpuff": [255, 218, 185],
|
||||||
"peru": [205, 133, 63],
|
"peru": [205, 133, 63],
|
||||||
"pink": [255, 192, 203],
|
"pink": [255, 192, 203],
|
||||||
"plum": [221, 160, 221],
|
"plum": [221, 160, 221],
|
||||||
"powderblue": [176, 224, 230],
|
"powderblue": [176, 224, 230],
|
||||||
"purple": [128, 0, 128],
|
"purple": [128, 0, 128],
|
||||||
"rebeccapurple": [102, 51, 153],
|
"rebeccapurple": [102, 51, 153],
|
||||||
"red": [255, 0, 0],
|
"red": [255, 0, 0],
|
||||||
"rosybrown": [188, 143, 143],
|
"rosybrown": [188, 143, 143],
|
||||||
"royalblue": [65, 105, 225],
|
"royalblue": [65, 105, 225],
|
||||||
"saddlebrown": [139, 69, 19],
|
"saddlebrown": [139, 69, 19],
|
||||||
"salmon": [250, 128, 114],
|
"salmon": [250, 128, 114],
|
||||||
"sandybrown": [244, 164, 96],
|
"sandybrown": [244, 164, 96],
|
||||||
"seagreen": [46, 139, 87],
|
"seagreen": [46, 139, 87],
|
||||||
"seashell": [255, 245, 238],
|
"seashell": [255, 245, 238],
|
||||||
"sienna": [160, 82, 45],
|
"sienna": [160, 82, 45],
|
||||||
"silver": [192, 192, 192],
|
"silver": [192, 192, 192],
|
||||||
"skyblue": [135, 206, 235],
|
"skyblue": [135, 206, 235],
|
||||||
"slateblue": [106, 90, 205],
|
"slateblue": [106, 90, 205],
|
||||||
"slategray": [112, 128, 144],
|
"slategray": [112, 128, 144],
|
||||||
"slategrey": [112, 128, 144],
|
"slategrey": [112, 128, 144],
|
||||||
"snow": [255, 250, 250],
|
"snow": [255, 250, 250],
|
||||||
"springgreen": [0, 255, 127],
|
"springgreen": [0, 255, 127],
|
||||||
"steelblue": [70, 130, 180],
|
"steelblue": [70, 130, 180],
|
||||||
"tan": [210, 180, 140],
|
"tan": [210, 180, 140],
|
||||||
"teal": [0, 128, 128],
|
"teal": [0, 128, 128],
|
||||||
"thistle": [216, 191, 216],
|
"thistle": [216, 191, 216],
|
||||||
"tomato": [255, 99, 71],
|
"tomato": [255, 99, 71],
|
||||||
"turquoise": [64, 224, 208],
|
"turquoise": [64, 224, 208],
|
||||||
"violet": [238, 130, 238],
|
"violet": [238, 130, 238],
|
||||||
"wheat": [245, 222, 179],
|
"wheat": [245, 222, 179],
|
||||||
"white": [255, 255, 255],
|
"white": [255, 255, 255],
|
||||||
"whitesmoke": [245, 245, 245],
|
"whitesmoke": [245, 245, 245],
|
||||||
"yellow": [255, 255, 0],
|
"yellow": [255, 255, 0],
|
||||||
"yellowgreen": [154, 205, 50]
|
"yellowgreen": [154, 205, 50]
|
||||||
};
|
};
|
||||||
|
|
||||||
/* MIT license */
|
/* MIT license */
|
||||||
|
|||||||
+298
-298
@@ -20,155 +20,155 @@ function getCjsExportFromNamespace (n) {
|
|||||||
return n && n['default'] || n;
|
return n && n['default'] || n;
|
||||||
}
|
}
|
||||||
|
|
||||||
var colorName = {
|
var colorName = {
|
||||||
"aliceblue": [240, 248, 255],
|
"aliceblue": [240, 248, 255],
|
||||||
"antiquewhite": [250, 235, 215],
|
"antiquewhite": [250, 235, 215],
|
||||||
"aqua": [0, 255, 255],
|
"aqua": [0, 255, 255],
|
||||||
"aquamarine": [127, 255, 212],
|
"aquamarine": [127, 255, 212],
|
||||||
"azure": [240, 255, 255],
|
"azure": [240, 255, 255],
|
||||||
"beige": [245, 245, 220],
|
"beige": [245, 245, 220],
|
||||||
"bisque": [255, 228, 196],
|
"bisque": [255, 228, 196],
|
||||||
"black": [0, 0, 0],
|
"black": [0, 0, 0],
|
||||||
"blanchedalmond": [255, 235, 205],
|
"blanchedalmond": [255, 235, 205],
|
||||||
"blue": [0, 0, 255],
|
"blue": [0, 0, 255],
|
||||||
"blueviolet": [138, 43, 226],
|
"blueviolet": [138, 43, 226],
|
||||||
"brown": [165, 42, 42],
|
"brown": [165, 42, 42],
|
||||||
"burlywood": [222, 184, 135],
|
"burlywood": [222, 184, 135],
|
||||||
"cadetblue": [95, 158, 160],
|
"cadetblue": [95, 158, 160],
|
||||||
"chartreuse": [127, 255, 0],
|
"chartreuse": [127, 255, 0],
|
||||||
"chocolate": [210, 105, 30],
|
"chocolate": [210, 105, 30],
|
||||||
"coral": [255, 127, 80],
|
"coral": [255, 127, 80],
|
||||||
"cornflowerblue": [100, 149, 237],
|
"cornflowerblue": [100, 149, 237],
|
||||||
"cornsilk": [255, 248, 220],
|
"cornsilk": [255, 248, 220],
|
||||||
"crimson": [220, 20, 60],
|
"crimson": [220, 20, 60],
|
||||||
"cyan": [0, 255, 255],
|
"cyan": [0, 255, 255],
|
||||||
"darkblue": [0, 0, 139],
|
"darkblue": [0, 0, 139],
|
||||||
"darkcyan": [0, 139, 139],
|
"darkcyan": [0, 139, 139],
|
||||||
"darkgoldenrod": [184, 134, 11],
|
"darkgoldenrod": [184, 134, 11],
|
||||||
"darkgray": [169, 169, 169],
|
"darkgray": [169, 169, 169],
|
||||||
"darkgreen": [0, 100, 0],
|
"darkgreen": [0, 100, 0],
|
||||||
"darkgrey": [169, 169, 169],
|
"darkgrey": [169, 169, 169],
|
||||||
"darkkhaki": [189, 183, 107],
|
"darkkhaki": [189, 183, 107],
|
||||||
"darkmagenta": [139, 0, 139],
|
"darkmagenta": [139, 0, 139],
|
||||||
"darkolivegreen": [85, 107, 47],
|
"darkolivegreen": [85, 107, 47],
|
||||||
"darkorange": [255, 140, 0],
|
"darkorange": [255, 140, 0],
|
||||||
"darkorchid": [153, 50, 204],
|
"darkorchid": [153, 50, 204],
|
||||||
"darkred": [139, 0, 0],
|
"darkred": [139, 0, 0],
|
||||||
"darksalmon": [233, 150, 122],
|
"darksalmon": [233, 150, 122],
|
||||||
"darkseagreen": [143, 188, 143],
|
"darkseagreen": [143, 188, 143],
|
||||||
"darkslateblue": [72, 61, 139],
|
"darkslateblue": [72, 61, 139],
|
||||||
"darkslategray": [47, 79, 79],
|
"darkslategray": [47, 79, 79],
|
||||||
"darkslategrey": [47, 79, 79],
|
"darkslategrey": [47, 79, 79],
|
||||||
"darkturquoise": [0, 206, 209],
|
"darkturquoise": [0, 206, 209],
|
||||||
"darkviolet": [148, 0, 211],
|
"darkviolet": [148, 0, 211],
|
||||||
"deeppink": [255, 20, 147],
|
"deeppink": [255, 20, 147],
|
||||||
"deepskyblue": [0, 191, 255],
|
"deepskyblue": [0, 191, 255],
|
||||||
"dimgray": [105, 105, 105],
|
"dimgray": [105, 105, 105],
|
||||||
"dimgrey": [105, 105, 105],
|
"dimgrey": [105, 105, 105],
|
||||||
"dodgerblue": [30, 144, 255],
|
"dodgerblue": [30, 144, 255],
|
||||||
"firebrick": [178, 34, 34],
|
"firebrick": [178, 34, 34],
|
||||||
"floralwhite": [255, 250, 240],
|
"floralwhite": [255, 250, 240],
|
||||||
"forestgreen": [34, 139, 34],
|
"forestgreen": [34, 139, 34],
|
||||||
"fuchsia": [255, 0, 255],
|
"fuchsia": [255, 0, 255],
|
||||||
"gainsboro": [220, 220, 220],
|
"gainsboro": [220, 220, 220],
|
||||||
"ghostwhite": [248, 248, 255],
|
"ghostwhite": [248, 248, 255],
|
||||||
"gold": [255, 215, 0],
|
"gold": [255, 215, 0],
|
||||||
"goldenrod": [218, 165, 32],
|
"goldenrod": [218, 165, 32],
|
||||||
"gray": [128, 128, 128],
|
"gray": [128, 128, 128],
|
||||||
"green": [0, 128, 0],
|
"green": [0, 128, 0],
|
||||||
"greenyellow": [173, 255, 47],
|
"greenyellow": [173, 255, 47],
|
||||||
"grey": [128, 128, 128],
|
"grey": [128, 128, 128],
|
||||||
"honeydew": [240, 255, 240],
|
"honeydew": [240, 255, 240],
|
||||||
"hotpink": [255, 105, 180],
|
"hotpink": [255, 105, 180],
|
||||||
"indianred": [205, 92, 92],
|
"indianred": [205, 92, 92],
|
||||||
"indigo": [75, 0, 130],
|
"indigo": [75, 0, 130],
|
||||||
"ivory": [255, 255, 240],
|
"ivory": [255, 255, 240],
|
||||||
"khaki": [240, 230, 140],
|
"khaki": [240, 230, 140],
|
||||||
"lavender": [230, 230, 250],
|
"lavender": [230, 230, 250],
|
||||||
"lavenderblush": [255, 240, 245],
|
"lavenderblush": [255, 240, 245],
|
||||||
"lawngreen": [124, 252, 0],
|
"lawngreen": [124, 252, 0],
|
||||||
"lemonchiffon": [255, 250, 205],
|
"lemonchiffon": [255, 250, 205],
|
||||||
"lightblue": [173, 216, 230],
|
"lightblue": [173, 216, 230],
|
||||||
"lightcoral": [240, 128, 128],
|
"lightcoral": [240, 128, 128],
|
||||||
"lightcyan": [224, 255, 255],
|
"lightcyan": [224, 255, 255],
|
||||||
"lightgoldenrodyellow": [250, 250, 210],
|
"lightgoldenrodyellow": [250, 250, 210],
|
||||||
"lightgray": [211, 211, 211],
|
"lightgray": [211, 211, 211],
|
||||||
"lightgreen": [144, 238, 144],
|
"lightgreen": [144, 238, 144],
|
||||||
"lightgrey": [211, 211, 211],
|
"lightgrey": [211, 211, 211],
|
||||||
"lightpink": [255, 182, 193],
|
"lightpink": [255, 182, 193],
|
||||||
"lightsalmon": [255, 160, 122],
|
"lightsalmon": [255, 160, 122],
|
||||||
"lightseagreen": [32, 178, 170],
|
"lightseagreen": [32, 178, 170],
|
||||||
"lightskyblue": [135, 206, 250],
|
"lightskyblue": [135, 206, 250],
|
||||||
"lightslategray": [119, 136, 153],
|
"lightslategray": [119, 136, 153],
|
||||||
"lightslategrey": [119, 136, 153],
|
"lightslategrey": [119, 136, 153],
|
||||||
"lightsteelblue": [176, 196, 222],
|
"lightsteelblue": [176, 196, 222],
|
||||||
"lightyellow": [255, 255, 224],
|
"lightyellow": [255, 255, 224],
|
||||||
"lime": [0, 255, 0],
|
"lime": [0, 255, 0],
|
||||||
"limegreen": [50, 205, 50],
|
"limegreen": [50, 205, 50],
|
||||||
"linen": [250, 240, 230],
|
"linen": [250, 240, 230],
|
||||||
"magenta": [255, 0, 255],
|
"magenta": [255, 0, 255],
|
||||||
"maroon": [128, 0, 0],
|
"maroon": [128, 0, 0],
|
||||||
"mediumaquamarine": [102, 205, 170],
|
"mediumaquamarine": [102, 205, 170],
|
||||||
"mediumblue": [0, 0, 205],
|
"mediumblue": [0, 0, 205],
|
||||||
"mediumorchid": [186, 85, 211],
|
"mediumorchid": [186, 85, 211],
|
||||||
"mediumpurple": [147, 112, 219],
|
"mediumpurple": [147, 112, 219],
|
||||||
"mediumseagreen": [60, 179, 113],
|
"mediumseagreen": [60, 179, 113],
|
||||||
"mediumslateblue": [123, 104, 238],
|
"mediumslateblue": [123, 104, 238],
|
||||||
"mediumspringgreen": [0, 250, 154],
|
"mediumspringgreen": [0, 250, 154],
|
||||||
"mediumturquoise": [72, 209, 204],
|
"mediumturquoise": [72, 209, 204],
|
||||||
"mediumvioletred": [199, 21, 133],
|
"mediumvioletred": [199, 21, 133],
|
||||||
"midnightblue": [25, 25, 112],
|
"midnightblue": [25, 25, 112],
|
||||||
"mintcream": [245, 255, 250],
|
"mintcream": [245, 255, 250],
|
||||||
"mistyrose": [255, 228, 225],
|
"mistyrose": [255, 228, 225],
|
||||||
"moccasin": [255, 228, 181],
|
"moccasin": [255, 228, 181],
|
||||||
"navajowhite": [255, 222, 173],
|
"navajowhite": [255, 222, 173],
|
||||||
"navy": [0, 0, 128],
|
"navy": [0, 0, 128],
|
||||||
"oldlace": [253, 245, 230],
|
"oldlace": [253, 245, 230],
|
||||||
"olive": [128, 128, 0],
|
"olive": [128, 128, 0],
|
||||||
"olivedrab": [107, 142, 35],
|
"olivedrab": [107, 142, 35],
|
||||||
"orange": [255, 165, 0],
|
"orange": [255, 165, 0],
|
||||||
"orangered": [255, 69, 0],
|
"orangered": [255, 69, 0],
|
||||||
"orchid": [218, 112, 214],
|
"orchid": [218, 112, 214],
|
||||||
"palegoldenrod": [238, 232, 170],
|
"palegoldenrod": [238, 232, 170],
|
||||||
"palegreen": [152, 251, 152],
|
"palegreen": [152, 251, 152],
|
||||||
"paleturquoise": [175, 238, 238],
|
"paleturquoise": [175, 238, 238],
|
||||||
"palevioletred": [219, 112, 147],
|
"palevioletred": [219, 112, 147],
|
||||||
"papayawhip": [255, 239, 213],
|
"papayawhip": [255, 239, 213],
|
||||||
"peachpuff": [255, 218, 185],
|
"peachpuff": [255, 218, 185],
|
||||||
"peru": [205, 133, 63],
|
"peru": [205, 133, 63],
|
||||||
"pink": [255, 192, 203],
|
"pink": [255, 192, 203],
|
||||||
"plum": [221, 160, 221],
|
"plum": [221, 160, 221],
|
||||||
"powderblue": [176, 224, 230],
|
"powderblue": [176, 224, 230],
|
||||||
"purple": [128, 0, 128],
|
"purple": [128, 0, 128],
|
||||||
"rebeccapurple": [102, 51, 153],
|
"rebeccapurple": [102, 51, 153],
|
||||||
"red": [255, 0, 0],
|
"red": [255, 0, 0],
|
||||||
"rosybrown": [188, 143, 143],
|
"rosybrown": [188, 143, 143],
|
||||||
"royalblue": [65, 105, 225],
|
"royalblue": [65, 105, 225],
|
||||||
"saddlebrown": [139, 69, 19],
|
"saddlebrown": [139, 69, 19],
|
||||||
"salmon": [250, 128, 114],
|
"salmon": [250, 128, 114],
|
||||||
"sandybrown": [244, 164, 96],
|
"sandybrown": [244, 164, 96],
|
||||||
"seagreen": [46, 139, 87],
|
"seagreen": [46, 139, 87],
|
||||||
"seashell": [255, 245, 238],
|
"seashell": [255, 245, 238],
|
||||||
"sienna": [160, 82, 45],
|
"sienna": [160, 82, 45],
|
||||||
"silver": [192, 192, 192],
|
"silver": [192, 192, 192],
|
||||||
"skyblue": [135, 206, 235],
|
"skyblue": [135, 206, 235],
|
||||||
"slateblue": [106, 90, 205],
|
"slateblue": [106, 90, 205],
|
||||||
"slategray": [112, 128, 144],
|
"slategray": [112, 128, 144],
|
||||||
"slategrey": [112, 128, 144],
|
"slategrey": [112, 128, 144],
|
||||||
"snow": [255, 250, 250],
|
"snow": [255, 250, 250],
|
||||||
"springgreen": [0, 255, 127],
|
"springgreen": [0, 255, 127],
|
||||||
"steelblue": [70, 130, 180],
|
"steelblue": [70, 130, 180],
|
||||||
"tan": [210, 180, 140],
|
"tan": [210, 180, 140],
|
||||||
"teal": [0, 128, 128],
|
"teal": [0, 128, 128],
|
||||||
"thistle": [216, 191, 216],
|
"thistle": [216, 191, 216],
|
||||||
"tomato": [255, 99, 71],
|
"tomato": [255, 99, 71],
|
||||||
"turquoise": [64, 224, 208],
|
"turquoise": [64, 224, 208],
|
||||||
"violet": [238, 130, 238],
|
"violet": [238, 130, 238],
|
||||||
"wheat": [245, 222, 179],
|
"wheat": [245, 222, 179],
|
||||||
"white": [255, 255, 255],
|
"white": [255, 255, 255],
|
||||||
"whitesmoke": [245, 245, 245],
|
"whitesmoke": [245, 245, 245],
|
||||||
"yellow": [255, 255, 0],
|
"yellow": [255, 255, 0],
|
||||||
"yellowgreen": [154, 205, 50]
|
"yellowgreen": [154, 205, 50]
|
||||||
};
|
};
|
||||||
|
|
||||||
var conversions = createCommonjsModule(function (module) {
|
var conversions = createCommonjsModule(function (module) {
|
||||||
@@ -1228,155 +1228,155 @@ models.forEach(function (fromModel) {
|
|||||||
|
|
||||||
var colorConvert = convert;
|
var colorConvert = convert;
|
||||||
|
|
||||||
var colorName$1 = {
|
var colorName$1 = {
|
||||||
"aliceblue": [240, 248, 255],
|
"aliceblue": [240, 248, 255],
|
||||||
"antiquewhite": [250, 235, 215],
|
"antiquewhite": [250, 235, 215],
|
||||||
"aqua": [0, 255, 255],
|
"aqua": [0, 255, 255],
|
||||||
"aquamarine": [127, 255, 212],
|
"aquamarine": [127, 255, 212],
|
||||||
"azure": [240, 255, 255],
|
"azure": [240, 255, 255],
|
||||||
"beige": [245, 245, 220],
|
"beige": [245, 245, 220],
|
||||||
"bisque": [255, 228, 196],
|
"bisque": [255, 228, 196],
|
||||||
"black": [0, 0, 0],
|
"black": [0, 0, 0],
|
||||||
"blanchedalmond": [255, 235, 205],
|
"blanchedalmond": [255, 235, 205],
|
||||||
"blue": [0, 0, 255],
|
"blue": [0, 0, 255],
|
||||||
"blueviolet": [138, 43, 226],
|
"blueviolet": [138, 43, 226],
|
||||||
"brown": [165, 42, 42],
|
"brown": [165, 42, 42],
|
||||||
"burlywood": [222, 184, 135],
|
"burlywood": [222, 184, 135],
|
||||||
"cadetblue": [95, 158, 160],
|
"cadetblue": [95, 158, 160],
|
||||||
"chartreuse": [127, 255, 0],
|
"chartreuse": [127, 255, 0],
|
||||||
"chocolate": [210, 105, 30],
|
"chocolate": [210, 105, 30],
|
||||||
"coral": [255, 127, 80],
|
"coral": [255, 127, 80],
|
||||||
"cornflowerblue": [100, 149, 237],
|
"cornflowerblue": [100, 149, 237],
|
||||||
"cornsilk": [255, 248, 220],
|
"cornsilk": [255, 248, 220],
|
||||||
"crimson": [220, 20, 60],
|
"crimson": [220, 20, 60],
|
||||||
"cyan": [0, 255, 255],
|
"cyan": [0, 255, 255],
|
||||||
"darkblue": [0, 0, 139],
|
"darkblue": [0, 0, 139],
|
||||||
"darkcyan": [0, 139, 139],
|
"darkcyan": [0, 139, 139],
|
||||||
"darkgoldenrod": [184, 134, 11],
|
"darkgoldenrod": [184, 134, 11],
|
||||||
"darkgray": [169, 169, 169],
|
"darkgray": [169, 169, 169],
|
||||||
"darkgreen": [0, 100, 0],
|
"darkgreen": [0, 100, 0],
|
||||||
"darkgrey": [169, 169, 169],
|
"darkgrey": [169, 169, 169],
|
||||||
"darkkhaki": [189, 183, 107],
|
"darkkhaki": [189, 183, 107],
|
||||||
"darkmagenta": [139, 0, 139],
|
"darkmagenta": [139, 0, 139],
|
||||||
"darkolivegreen": [85, 107, 47],
|
"darkolivegreen": [85, 107, 47],
|
||||||
"darkorange": [255, 140, 0],
|
"darkorange": [255, 140, 0],
|
||||||
"darkorchid": [153, 50, 204],
|
"darkorchid": [153, 50, 204],
|
||||||
"darkred": [139, 0, 0],
|
"darkred": [139, 0, 0],
|
||||||
"darksalmon": [233, 150, 122],
|
"darksalmon": [233, 150, 122],
|
||||||
"darkseagreen": [143, 188, 143],
|
"darkseagreen": [143, 188, 143],
|
||||||
"darkslateblue": [72, 61, 139],
|
"darkslateblue": [72, 61, 139],
|
||||||
"darkslategray": [47, 79, 79],
|
"darkslategray": [47, 79, 79],
|
||||||
"darkslategrey": [47, 79, 79],
|
"darkslategrey": [47, 79, 79],
|
||||||
"darkturquoise": [0, 206, 209],
|
"darkturquoise": [0, 206, 209],
|
||||||
"darkviolet": [148, 0, 211],
|
"darkviolet": [148, 0, 211],
|
||||||
"deeppink": [255, 20, 147],
|
"deeppink": [255, 20, 147],
|
||||||
"deepskyblue": [0, 191, 255],
|
"deepskyblue": [0, 191, 255],
|
||||||
"dimgray": [105, 105, 105],
|
"dimgray": [105, 105, 105],
|
||||||
"dimgrey": [105, 105, 105],
|
"dimgrey": [105, 105, 105],
|
||||||
"dodgerblue": [30, 144, 255],
|
"dodgerblue": [30, 144, 255],
|
||||||
"firebrick": [178, 34, 34],
|
"firebrick": [178, 34, 34],
|
||||||
"floralwhite": [255, 250, 240],
|
"floralwhite": [255, 250, 240],
|
||||||
"forestgreen": [34, 139, 34],
|
"forestgreen": [34, 139, 34],
|
||||||
"fuchsia": [255, 0, 255],
|
"fuchsia": [255, 0, 255],
|
||||||
"gainsboro": [220, 220, 220],
|
"gainsboro": [220, 220, 220],
|
||||||
"ghostwhite": [248, 248, 255],
|
"ghostwhite": [248, 248, 255],
|
||||||
"gold": [255, 215, 0],
|
"gold": [255, 215, 0],
|
||||||
"goldenrod": [218, 165, 32],
|
"goldenrod": [218, 165, 32],
|
||||||
"gray": [128, 128, 128],
|
"gray": [128, 128, 128],
|
||||||
"green": [0, 128, 0],
|
"green": [0, 128, 0],
|
||||||
"greenyellow": [173, 255, 47],
|
"greenyellow": [173, 255, 47],
|
||||||
"grey": [128, 128, 128],
|
"grey": [128, 128, 128],
|
||||||
"honeydew": [240, 255, 240],
|
"honeydew": [240, 255, 240],
|
||||||
"hotpink": [255, 105, 180],
|
"hotpink": [255, 105, 180],
|
||||||
"indianred": [205, 92, 92],
|
"indianred": [205, 92, 92],
|
||||||
"indigo": [75, 0, 130],
|
"indigo": [75, 0, 130],
|
||||||
"ivory": [255, 255, 240],
|
"ivory": [255, 255, 240],
|
||||||
"khaki": [240, 230, 140],
|
"khaki": [240, 230, 140],
|
||||||
"lavender": [230, 230, 250],
|
"lavender": [230, 230, 250],
|
||||||
"lavenderblush": [255, 240, 245],
|
"lavenderblush": [255, 240, 245],
|
||||||
"lawngreen": [124, 252, 0],
|
"lawngreen": [124, 252, 0],
|
||||||
"lemonchiffon": [255, 250, 205],
|
"lemonchiffon": [255, 250, 205],
|
||||||
"lightblue": [173, 216, 230],
|
"lightblue": [173, 216, 230],
|
||||||
"lightcoral": [240, 128, 128],
|
"lightcoral": [240, 128, 128],
|
||||||
"lightcyan": [224, 255, 255],
|
"lightcyan": [224, 255, 255],
|
||||||
"lightgoldenrodyellow": [250, 250, 210],
|
"lightgoldenrodyellow": [250, 250, 210],
|
||||||
"lightgray": [211, 211, 211],
|
"lightgray": [211, 211, 211],
|
||||||
"lightgreen": [144, 238, 144],
|
"lightgreen": [144, 238, 144],
|
||||||
"lightgrey": [211, 211, 211],
|
"lightgrey": [211, 211, 211],
|
||||||
"lightpink": [255, 182, 193],
|
"lightpink": [255, 182, 193],
|
||||||
"lightsalmon": [255, 160, 122],
|
"lightsalmon": [255, 160, 122],
|
||||||
"lightseagreen": [32, 178, 170],
|
"lightseagreen": [32, 178, 170],
|
||||||
"lightskyblue": [135, 206, 250],
|
"lightskyblue": [135, 206, 250],
|
||||||
"lightslategray": [119, 136, 153],
|
"lightslategray": [119, 136, 153],
|
||||||
"lightslategrey": [119, 136, 153],
|
"lightslategrey": [119, 136, 153],
|
||||||
"lightsteelblue": [176, 196, 222],
|
"lightsteelblue": [176, 196, 222],
|
||||||
"lightyellow": [255, 255, 224],
|
"lightyellow": [255, 255, 224],
|
||||||
"lime": [0, 255, 0],
|
"lime": [0, 255, 0],
|
||||||
"limegreen": [50, 205, 50],
|
"limegreen": [50, 205, 50],
|
||||||
"linen": [250, 240, 230],
|
"linen": [250, 240, 230],
|
||||||
"magenta": [255, 0, 255],
|
"magenta": [255, 0, 255],
|
||||||
"maroon": [128, 0, 0],
|
"maroon": [128, 0, 0],
|
||||||
"mediumaquamarine": [102, 205, 170],
|
"mediumaquamarine": [102, 205, 170],
|
||||||
"mediumblue": [0, 0, 205],
|
"mediumblue": [0, 0, 205],
|
||||||
"mediumorchid": [186, 85, 211],
|
"mediumorchid": [186, 85, 211],
|
||||||
"mediumpurple": [147, 112, 219],
|
"mediumpurple": [147, 112, 219],
|
||||||
"mediumseagreen": [60, 179, 113],
|
"mediumseagreen": [60, 179, 113],
|
||||||
"mediumslateblue": [123, 104, 238],
|
"mediumslateblue": [123, 104, 238],
|
||||||
"mediumspringgreen": [0, 250, 154],
|
"mediumspringgreen": [0, 250, 154],
|
||||||
"mediumturquoise": [72, 209, 204],
|
"mediumturquoise": [72, 209, 204],
|
||||||
"mediumvioletred": [199, 21, 133],
|
"mediumvioletred": [199, 21, 133],
|
||||||
"midnightblue": [25, 25, 112],
|
"midnightblue": [25, 25, 112],
|
||||||
"mintcream": [245, 255, 250],
|
"mintcream": [245, 255, 250],
|
||||||
"mistyrose": [255, 228, 225],
|
"mistyrose": [255, 228, 225],
|
||||||
"moccasin": [255, 228, 181],
|
"moccasin": [255, 228, 181],
|
||||||
"navajowhite": [255, 222, 173],
|
"navajowhite": [255, 222, 173],
|
||||||
"navy": [0, 0, 128],
|
"navy": [0, 0, 128],
|
||||||
"oldlace": [253, 245, 230],
|
"oldlace": [253, 245, 230],
|
||||||
"olive": [128, 128, 0],
|
"olive": [128, 128, 0],
|
||||||
"olivedrab": [107, 142, 35],
|
"olivedrab": [107, 142, 35],
|
||||||
"orange": [255, 165, 0],
|
"orange": [255, 165, 0],
|
||||||
"orangered": [255, 69, 0],
|
"orangered": [255, 69, 0],
|
||||||
"orchid": [218, 112, 214],
|
"orchid": [218, 112, 214],
|
||||||
"palegoldenrod": [238, 232, 170],
|
"palegoldenrod": [238, 232, 170],
|
||||||
"palegreen": [152, 251, 152],
|
"palegreen": [152, 251, 152],
|
||||||
"paleturquoise": [175, 238, 238],
|
"paleturquoise": [175, 238, 238],
|
||||||
"palevioletred": [219, 112, 147],
|
"palevioletred": [219, 112, 147],
|
||||||
"papayawhip": [255, 239, 213],
|
"papayawhip": [255, 239, 213],
|
||||||
"peachpuff": [255, 218, 185],
|
"peachpuff": [255, 218, 185],
|
||||||
"peru": [205, 133, 63],
|
"peru": [205, 133, 63],
|
||||||
"pink": [255, 192, 203],
|
"pink": [255, 192, 203],
|
||||||
"plum": [221, 160, 221],
|
"plum": [221, 160, 221],
|
||||||
"powderblue": [176, 224, 230],
|
"powderblue": [176, 224, 230],
|
||||||
"purple": [128, 0, 128],
|
"purple": [128, 0, 128],
|
||||||
"rebeccapurple": [102, 51, 153],
|
"rebeccapurple": [102, 51, 153],
|
||||||
"red": [255, 0, 0],
|
"red": [255, 0, 0],
|
||||||
"rosybrown": [188, 143, 143],
|
"rosybrown": [188, 143, 143],
|
||||||
"royalblue": [65, 105, 225],
|
"royalblue": [65, 105, 225],
|
||||||
"saddlebrown": [139, 69, 19],
|
"saddlebrown": [139, 69, 19],
|
||||||
"salmon": [250, 128, 114],
|
"salmon": [250, 128, 114],
|
||||||
"sandybrown": [244, 164, 96],
|
"sandybrown": [244, 164, 96],
|
||||||
"seagreen": [46, 139, 87],
|
"seagreen": [46, 139, 87],
|
||||||
"seashell": [255, 245, 238],
|
"seashell": [255, 245, 238],
|
||||||
"sienna": [160, 82, 45],
|
"sienna": [160, 82, 45],
|
||||||
"silver": [192, 192, 192],
|
"silver": [192, 192, 192],
|
||||||
"skyblue": [135, 206, 235],
|
"skyblue": [135, 206, 235],
|
||||||
"slateblue": [106, 90, 205],
|
"slateblue": [106, 90, 205],
|
||||||
"slategray": [112, 128, 144],
|
"slategray": [112, 128, 144],
|
||||||
"slategrey": [112, 128, 144],
|
"slategrey": [112, 128, 144],
|
||||||
"snow": [255, 250, 250],
|
"snow": [255, 250, 250],
|
||||||
"springgreen": [0, 255, 127],
|
"springgreen": [0, 255, 127],
|
||||||
"steelblue": [70, 130, 180],
|
"steelblue": [70, 130, 180],
|
||||||
"tan": [210, 180, 140],
|
"tan": [210, 180, 140],
|
||||||
"teal": [0, 128, 128],
|
"teal": [0, 128, 128],
|
||||||
"thistle": [216, 191, 216],
|
"thistle": [216, 191, 216],
|
||||||
"tomato": [255, 99, 71],
|
"tomato": [255, 99, 71],
|
||||||
"turquoise": [64, 224, 208],
|
"turquoise": [64, 224, 208],
|
||||||
"violet": [238, 130, 238],
|
"violet": [238, 130, 238],
|
||||||
"wheat": [245, 222, 179],
|
"wheat": [245, 222, 179],
|
||||||
"white": [255, 255, 255],
|
"white": [255, 255, 255],
|
||||||
"whitesmoke": [245, 245, 245],
|
"whitesmoke": [245, 245, 245],
|
||||||
"yellow": [255, 255, 0],
|
"yellow": [255, 255, 0],
|
||||||
"yellowgreen": [154, 205, 50]
|
"yellowgreen": [154, 205, 50]
|
||||||
};
|
};
|
||||||
|
|
||||||
/* MIT license */
|
/* MIT license */
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,208 +1,208 @@
|
|||||||
/*
|
/*
|
||||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
body
|
body
|
||||||
{
|
{
|
||||||
/* Font */
|
/* Font */
|
||||||
font-family: sans-serif, Arial, Verdana, "Trebuchet MS";
|
font-family: sans-serif, Arial, Verdana, "Trebuchet MS";
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
|
||||||
/* Text color */
|
/* Text color */
|
||||||
color: #333;
|
color: #333;
|
||||||
|
|
||||||
/* Remove the background color to make it transparent */
|
/* Remove the background color to make it transparent */
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
|
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_editable
|
.cke_editable
|
||||||
{
|
{
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
|
|
||||||
/* Fix for missing scrollbars with RTL texts. (#10488) */
|
/* Fix for missing scrollbars with RTL texts. (#10488) */
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote
|
blockquote
|
||||||
{
|
{
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-family: Georgia, Times, "Times New Roman", serif;
|
font-family: Georgia, Times, "Times New Roman", serif;
|
||||||
padding: 2px 0;
|
padding: 2px 0;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-color: #ccc;
|
border-color: #ccc;
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_contents_ltr blockquote
|
.cke_contents_ltr blockquote
|
||||||
{
|
{
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
padding-right: 8px;
|
padding-right: 8px;
|
||||||
border-left-width: 5px;
|
border-left-width: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_contents_rtl blockquote
|
.cke_contents_rtl blockquote
|
||||||
{
|
{
|
||||||
padding-left: 8px;
|
padding-left: 8px;
|
||||||
padding-right: 20px;
|
padding-right: 20px;
|
||||||
border-right-width: 5px;
|
border-right-width: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a
|
a
|
||||||
{
|
{
|
||||||
color: #0782C1;
|
color: #0782C1;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol,ul,dl
|
ol,ul,dl
|
||||||
{
|
{
|
||||||
/* IE7: reset rtl list margin. (#7334) */
|
/* IE7: reset rtl list margin. (#7334) */
|
||||||
*margin-right: 0px;
|
*margin-right: 0px;
|
||||||
/* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/
|
/* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/
|
||||||
padding: 0 40px;
|
padding: 0 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1,h2,h3,h4,h5,h6
|
h1,h2,h3,h4,h5,h6
|
||||||
{
|
{
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
}
|
}
|
||||||
|
|
||||||
hr
|
hr
|
||||||
{
|
{
|
||||||
border: 0px;
|
border: 0px;
|
||||||
border-top: 1px solid #ccc;
|
border-top: 1px solid #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
img.right
|
img.right
|
||||||
{
|
{
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
float: right;
|
float: right;
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
img.left
|
img.left
|
||||||
{
|
{
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
float: left;
|
float: left;
|
||||||
margin-right: 15px;
|
margin-right: 15px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre
|
pre
|
||||||
{
|
{
|
||||||
white-space: pre-wrap; /* CSS 2.1 */
|
white-space: pre-wrap; /* CSS 2.1 */
|
||||||
word-wrap: break-word; /* IE7 */
|
word-wrap: break-word; /* IE7 */
|
||||||
-moz-tab-size: 4;
|
-moz-tab-size: 4;
|
||||||
tab-size: 4;
|
tab-size: 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.marker
|
.marker
|
||||||
{
|
{
|
||||||
background-color: Yellow;
|
background-color: Yellow;
|
||||||
}
|
}
|
||||||
|
|
||||||
span[lang]
|
span[lang]
|
||||||
{
|
{
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
figure
|
figure
|
||||||
{
|
{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border: solid 1px #ccc;
|
border: solid 1px #ccc;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
background: rgba(0,0,0,0.05);
|
background: rgba(0,0,0,0.05);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 10px 20px;
|
margin: 10px 20px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
figure > figcaption
|
figure > figcaption
|
||||||
{
|
{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
display: block; /* For IE8 */
|
display: block; /* For IE8 */
|
||||||
}
|
}
|
||||||
|
|
||||||
a > img {
|
a > img {
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
margin: 1px;
|
margin: 1px;
|
||||||
border: none;
|
border: none;
|
||||||
outline: 1px solid #0782C1;
|
outline: 1px solid #0782C1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Widget Styles */
|
/* Widget Styles */
|
||||||
.code-featured
|
.code-featured
|
||||||
{
|
{
|
||||||
border: 5px solid red;
|
border: 5px solid red;
|
||||||
}
|
}
|
||||||
|
|
||||||
.math-featured
|
.math-featured
|
||||||
{
|
{
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
box-shadow: 0 0 2px rgba(200, 0, 0, 1);
|
box-shadow: 0 0 2px rgba(200, 0, 0, 1);
|
||||||
background-color: rgba(255, 0, 0, 0.05);
|
background-color: rgba(255, 0, 0, 0.05);
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.image-clean
|
.image-clean
|
||||||
{
|
{
|
||||||
border: 0;
|
border: 0;
|
||||||
background: none;
|
background: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.image-clean > figcaption
|
.image-clean > figcaption
|
||||||
{
|
{
|
||||||
font-size: .9em;
|
font-size: .9em;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.image-grayscale
|
.image-grayscale
|
||||||
{
|
{
|
||||||
background-color: white;
|
background-color: white;
|
||||||
color: #666;
|
color: #666;
|
||||||
}
|
}
|
||||||
|
|
||||||
.image-grayscale img, img.image-grayscale
|
.image-grayscale img, img.image-grayscale
|
||||||
{
|
{
|
||||||
filter: grayscale(100%);
|
filter: grayscale(100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.embed-240p
|
.embed-240p
|
||||||
{
|
{
|
||||||
max-width: 426px;
|
max-width: 426px;
|
||||||
max-height: 240px;
|
max-height: 240px;
|
||||||
margin:0 auto;
|
margin:0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.embed-360p
|
.embed-360p
|
||||||
{
|
{
|
||||||
max-width: 640px;
|
max-width: 640px;
|
||||||
max-height: 360px;
|
max-height: 360px;
|
||||||
margin:0 auto;
|
margin:0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.embed-480p
|
.embed-480p
|
||||||
{
|
{
|
||||||
max-width: 854px;
|
max-width: 854px;
|
||||||
max-height: 480px;
|
max-height: 480px;
|
||||||
margin:0 auto;
|
margin:0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.embed-720p
|
.embed-720p
|
||||||
{
|
{
|
||||||
max-width: 1280px;
|
max-width: 1280px;
|
||||||
max-height: 720px;
|
max-height: 720px;
|
||||||
margin:0 auto;
|
margin:0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.embed-1080p
|
.embed-1080p
|
||||||
{
|
{
|
||||||
max-width: 1920px;
|
max-width: 1920px;
|
||||||
max-height: 1080px;
|
max-height: 1080px;
|
||||||
margin:0 auto;
|
margin:0 auto;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,63 +1,63 @@
|
|||||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||||
|
|
||||||
af.js Found: 62 Missing: 4
|
af.js Found: 62 Missing: 4
|
||||||
ar.js Found: 51 Missing: 15
|
ar.js Found: 51 Missing: 15
|
||||||
bg.js Found: 58 Missing: 8
|
bg.js Found: 58 Missing: 8
|
||||||
bn.js Found: 40 Missing: 26
|
bn.js Found: 40 Missing: 26
|
||||||
bs.js Found: 29 Missing: 37
|
bs.js Found: 29 Missing: 37
|
||||||
ca.js Found: 61 Missing: 5
|
ca.js Found: 61 Missing: 5
|
||||||
cs.js Found: 66 Missing: 0
|
cs.js Found: 66 Missing: 0
|
||||||
cy.js Found: 66 Missing: 0
|
cy.js Found: 66 Missing: 0
|
||||||
da.js Found: 66 Missing: 0
|
da.js Found: 66 Missing: 0
|
||||||
de.js Found: 66 Missing: 0
|
de.js Found: 66 Missing: 0
|
||||||
el.js Found: 59 Missing: 7
|
el.js Found: 59 Missing: 7
|
||||||
en-au.js Found: 38 Missing: 28
|
en-au.js Found: 38 Missing: 28
|
||||||
en-ca.js Found: 37 Missing: 29
|
en-ca.js Found: 37 Missing: 29
|
||||||
en-gb.js Found: 61 Missing: 5
|
en-gb.js Found: 61 Missing: 5
|
||||||
eo.js Found: 66 Missing: 0
|
eo.js Found: 66 Missing: 0
|
||||||
es.js Found: 66 Missing: 0
|
es.js Found: 66 Missing: 0
|
||||||
et.js Found: 66 Missing: 0
|
et.js Found: 66 Missing: 0
|
||||||
eu.js Found: 48 Missing: 18
|
eu.js Found: 48 Missing: 18
|
||||||
fa.js Found: 66 Missing: 0
|
fa.js Found: 66 Missing: 0
|
||||||
fi.js Found: 66 Missing: 0
|
fi.js Found: 66 Missing: 0
|
||||||
fo.js Found: 66 Missing: 0
|
fo.js Found: 66 Missing: 0
|
||||||
fr-ca.js Found: 42 Missing: 24
|
fr-ca.js Found: 42 Missing: 24
|
||||||
fr.js Found: 66 Missing: 0
|
fr.js Found: 66 Missing: 0
|
||||||
gl.js Found: 40 Missing: 26
|
gl.js Found: 40 Missing: 26
|
||||||
gu.js Found: 66 Missing: 0
|
gu.js Found: 66 Missing: 0
|
||||||
he.js Found: 66 Missing: 0
|
he.js Found: 66 Missing: 0
|
||||||
hi.js Found: 43 Missing: 23
|
hi.js Found: 43 Missing: 23
|
||||||
hr.js Found: 66 Missing: 0
|
hr.js Found: 66 Missing: 0
|
||||||
hu.js Found: 63 Missing: 3
|
hu.js Found: 63 Missing: 3
|
||||||
is.js Found: 41 Missing: 25
|
is.js Found: 41 Missing: 25
|
||||||
it.js Found: 66 Missing: 0
|
it.js Found: 66 Missing: 0
|
||||||
ja.js Found: 62 Missing: 4
|
ja.js Found: 62 Missing: 4
|
||||||
ka.js Found: 62 Missing: 4
|
ka.js Found: 62 Missing: 4
|
||||||
km.js Found: 40 Missing: 26
|
km.js Found: 40 Missing: 26
|
||||||
ko.js Found: 40 Missing: 26
|
ko.js Found: 40 Missing: 26
|
||||||
lt.js Found: 66 Missing: 0
|
lt.js Found: 66 Missing: 0
|
||||||
lv.js Found: 40 Missing: 26
|
lv.js Found: 40 Missing: 26
|
||||||
mk.js Found: 0 Missing: 66
|
mk.js Found: 0 Missing: 66
|
||||||
mn.js Found: 40 Missing: 26
|
mn.js Found: 40 Missing: 26
|
||||||
ms.js Found: 39 Missing: 27
|
ms.js Found: 39 Missing: 27
|
||||||
nb.js Found: 66 Missing: 0
|
nb.js Found: 66 Missing: 0
|
||||||
nl.js Found: 65 Missing: 1
|
nl.js Found: 65 Missing: 1
|
||||||
no.js Found: 66 Missing: 0
|
no.js Found: 66 Missing: 0
|
||||||
pl.js Found: 66 Missing: 0
|
pl.js Found: 66 Missing: 0
|
||||||
pt-br.js Found: 66 Missing: 0
|
pt-br.js Found: 66 Missing: 0
|
||||||
pt.js Found: 52 Missing: 14
|
pt.js Found: 52 Missing: 14
|
||||||
ro.js Found: 61 Missing: 5
|
ro.js Found: 61 Missing: 5
|
||||||
ru.js Found: 66 Missing: 0
|
ru.js Found: 66 Missing: 0
|
||||||
sk.js Found: 49 Missing: 17
|
sk.js Found: 49 Missing: 17
|
||||||
sl.js Found: 48 Missing: 18
|
sl.js Found: 48 Missing: 18
|
||||||
sr-latn.js Found: 40 Missing: 26
|
sr-latn.js Found: 40 Missing: 26
|
||||||
sr.js Found: 40 Missing: 26
|
sr.js Found: 40 Missing: 26
|
||||||
sv.js Found: 62 Missing: 4
|
sv.js Found: 62 Missing: 4
|
||||||
th.js Found: 40 Missing: 26
|
th.js Found: 40 Missing: 26
|
||||||
tr.js Found: 66 Missing: 0
|
tr.js Found: 66 Missing: 0
|
||||||
ug.js Found: 66 Missing: 0
|
ug.js Found: 66 Missing: 0
|
||||||
uk.js Found: 66 Missing: 0
|
uk.js Found: 66 Missing: 0
|
||||||
vi.js Found: 66 Missing: 0
|
vi.js Found: 66 Missing: 0
|
||||||
zh-cn.js Found: 66 Missing: 0
|
zh-cn.js Found: 66 Missing: 0
|
||||||
zh.js Found: 58 Missing: 8
|
zh.js Found: 58 Missing: 8
|
||||||
|
|||||||
+25
-25
@@ -1,25 +1,25 @@
|
|||||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||||
|
|
||||||
cs.js Found: 30 Missing: 0
|
cs.js Found: 30 Missing: 0
|
||||||
cy.js Found: 30 Missing: 0
|
cy.js Found: 30 Missing: 0
|
||||||
da.js Found: 12 Missing: 18
|
da.js Found: 12 Missing: 18
|
||||||
de.js Found: 30 Missing: 0
|
de.js Found: 30 Missing: 0
|
||||||
el.js Found: 25 Missing: 5
|
el.js Found: 25 Missing: 5
|
||||||
eo.js Found: 30 Missing: 0
|
eo.js Found: 30 Missing: 0
|
||||||
fa.js Found: 30 Missing: 0
|
fa.js Found: 30 Missing: 0
|
||||||
fi.js Found: 30 Missing: 0
|
fi.js Found: 30 Missing: 0
|
||||||
fr.js Found: 30 Missing: 0
|
fr.js Found: 30 Missing: 0
|
||||||
gu.js Found: 12 Missing: 18
|
gu.js Found: 12 Missing: 18
|
||||||
he.js Found: 30 Missing: 0
|
he.js Found: 30 Missing: 0
|
||||||
it.js Found: 30 Missing: 0
|
it.js Found: 30 Missing: 0
|
||||||
mk.js Found: 5 Missing: 25
|
mk.js Found: 5 Missing: 25
|
||||||
nb.js Found: 30 Missing: 0
|
nb.js Found: 30 Missing: 0
|
||||||
nl.js Found: 30 Missing: 0
|
nl.js Found: 30 Missing: 0
|
||||||
no.js Found: 30 Missing: 0
|
no.js Found: 30 Missing: 0
|
||||||
pt-br.js Found: 30 Missing: 0
|
pt-br.js Found: 30 Missing: 0
|
||||||
ro.js Found: 6 Missing: 24
|
ro.js Found: 6 Missing: 24
|
||||||
tr.js Found: 30 Missing: 0
|
tr.js Found: 30 Missing: 0
|
||||||
ug.js Found: 27 Missing: 3
|
ug.js Found: 27 Missing: 3
|
||||||
vi.js Found: 6 Missing: 24
|
vi.js Found: 6 Missing: 24
|
||||||
zh-cn.js Found: 30 Missing: 0
|
zh-cn.js Found: 30 Missing: 0
|
||||||
|
|||||||
+220
-220
@@ -1,220 +1,220 @@
|
|||||||
/*
|
/*
|
||||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.cke_balloon
|
.cke_balloon
|
||||||
{
|
{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 10000;
|
z-index: 10000;
|
||||||
|
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border: 1px solid #b2b2b2;
|
border: 1px solid #b2b2b2;
|
||||||
border-bottom-color: #999;
|
border-bottom-color: #999;
|
||||||
|
|
||||||
-moz-border-radius: 3px;
|
-moz-border-radius: 3px;
|
||||||
-webkit-border-radius: 3px;
|
-webkit-border-radius: 3px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
|
|
||||||
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
|
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
|
||||||
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
|
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
|
||||||
box-shadow: 0 0 3px rgba(0, 0, 0, .15);
|
box-shadow: 0 0 3px rgba(0, 0, 0, .15);
|
||||||
|
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_title
|
.cke_balloon_title
|
||||||
{
|
{
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
|
||||||
color: #474747;
|
color: #474747;
|
||||||
text-shadow: 0 1px 0 rgba(255,255,255,.75);
|
text-shadow: 0 1px 0 rgba(255,255,255,.75);
|
||||||
|
|
||||||
padding: 3px 3px 8px;
|
padding: 3px 3px 8px;
|
||||||
border-bottom: 1px solid #eee;
|
border-bottom: 1px solid #eee;
|
||||||
|
|
||||||
-moz-border-radius: 2px 2px 0 0;
|
-moz-border-radius: 2px 2px 0 0;
|
||||||
-webkit-border-radius: 2px 2px 0 0;
|
-webkit-border-radius: 2px 2px 0 0;
|
||||||
border-radius: 2px 2px 0 0;
|
border-radius: 2px 2px 0 0;
|
||||||
|
|
||||||
-moz-box-shadow: 0 1px 0 #fff inset;
|
-moz-box-shadow: 0 1px 0 #fff inset;
|
||||||
-webkit-box-shadow: 0 1px 0 #fff inset;
|
-webkit-box-shadow: 0 1px 0 #fff inset;
|
||||||
box-shadow: 0 1px 0 #fff inset;
|
box-shadow: 0 1px 0 #fff inset;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The close button at the top of the panel. */
|
/* The close button at the top of the panel. */
|
||||||
a.cke_balloon_close_button
|
a.cke_balloon_close_button
|
||||||
{
|
{
|
||||||
background-image: url(../../../../skins/kama/images/sprites.png);
|
background-image: url(../../../../skins/kama/images/sprites.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: 0 -1022px;
|
background-position: 0 -1022px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
top: 5px;
|
top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.cke_balloon_close_button:hover {
|
a.cke_balloon_close_button:hover {
|
||||||
background-position: 0 -1045px;
|
background-position: 0 -1045px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_content
|
.cke_balloon_content
|
||||||
{
|
{
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
min-height: 68px;
|
min-height: 68px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_close_button:hover
|
.cke_balloon_close_button:hover
|
||||||
{
|
{
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
filter: alpha(opacity = 100);
|
filter: alpha(opacity = 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_close_button span
|
.cke_balloon_close_button span
|
||||||
{
|
{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_ltr .cke_balloon_close_button
|
.cke_ltr .cke_balloon_close_button
|
||||||
{
|
{
|
||||||
right: 5px;
|
right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_rtl .cke_balloon_close_button
|
.cke_rtl .cke_balloon_close_button
|
||||||
{
|
{
|
||||||
left: 6px;
|
left: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle
|
.cke_balloon_triangle
|
||||||
{
|
{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
display: block;
|
display: block;
|
||||||
width: 0;
|
width: 0;
|
||||||
height: 0;
|
height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner
|
.cke_balloon_triangle_inner
|
||||||
{
|
{
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_outer
|
.cke_balloon_triangle_outer
|
||||||
{
|
{
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ bottom, top ] */
|
/* side: [ bottom, top ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_bottom,
|
.cke_balloon_triangle_outer.cke_balloon_triangle_bottom,
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_top
|
.cke_balloon_triangle_outer.cke_balloon_triangle_top
|
||||||
{
|
{
|
||||||
border-color: #6B6B6B transparent;
|
border-color: #6B6B6B transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_bottom,
|
.cke_balloon_triangle_inner.cke_balloon_triangle_bottom,
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_top
|
.cke_balloon_triangle_inner.cke_balloon_triangle_top
|
||||||
{
|
{
|
||||||
left: -20px;
|
left: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ bottom ] */
|
/* side: [ bottom ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_bottom
|
.cke_balloon_triangle_outer.cke_balloon_triangle_bottom
|
||||||
{
|
{
|
||||||
border-width: 20px 20px 0;
|
border-width: 20px 20px 0;
|
||||||
bottom: -20px;
|
bottom: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_bottom
|
.cke_balloon_triangle_inner.cke_balloon_triangle_bottom
|
||||||
{
|
{
|
||||||
border-color: #fff transparent;
|
border-color: #fff transparent;
|
||||||
border-width: 20px 20px 0;
|
border-width: 20px 20px 0;
|
||||||
top: -21px;
|
top: -21px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ top ] */
|
/* side: [ top ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_top
|
.cke_balloon_triangle_outer.cke_balloon_triangle_top
|
||||||
{
|
{
|
||||||
border-width: 0 20px 20px;
|
border-width: 0 20px 20px;
|
||||||
top: -20px;
|
top: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_top
|
.cke_balloon_triangle_inner.cke_balloon_triangle_top
|
||||||
{
|
{
|
||||||
border-color: #fff transparent;
|
border-color: #fff transparent;
|
||||||
border-width: 0 20px 20px;
|
border-width: 0 20px 20px;
|
||||||
top: 1px;
|
top: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ left, right ] */
|
/* side: [ left, right ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_left,
|
.cke_balloon_triangle_outer.cke_balloon_triangle_left,
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_right
|
.cke_balloon_triangle_outer.cke_balloon_triangle_right
|
||||||
{
|
{
|
||||||
border-color: transparent #6B6B6B;
|
border-color: transparent #6B6B6B;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_left,
|
.cke_balloon_triangle_inner.cke_balloon_triangle_left,
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_right
|
.cke_balloon_triangle_inner.cke_balloon_triangle_right
|
||||||
{
|
{
|
||||||
border-color: transparent #fff;
|
border-color: transparent #fff;
|
||||||
top: -20px;
|
top: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ left ] */
|
/* side: [ left ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_left
|
.cke_balloon_triangle_outer.cke_balloon_triangle_left
|
||||||
{
|
{
|
||||||
border-width: 20px 20px 20px 0;
|
border-width: 20px 20px 20px 0;
|
||||||
left: -20px;
|
left: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_left
|
.cke_balloon_triangle_inner.cke_balloon_triangle_left
|
||||||
{
|
{
|
||||||
border-color: transparent #fff;
|
border-color: transparent #fff;
|
||||||
border-width: 20px 20px 20px 0;
|
border-width: 20px 20px 20px 0;
|
||||||
left: 1px;
|
left: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ right ] */
|
/* side: [ right ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_right
|
.cke_balloon_triangle_outer.cke_balloon_triangle_right
|
||||||
{
|
{
|
||||||
border-width: 20px 0 20px 20px;
|
border-width: 20px 0 20px 20px;
|
||||||
right: -20px;
|
right: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_right
|
.cke_balloon_triangle_inner.cke_balloon_triangle_right
|
||||||
{
|
{
|
||||||
border-width: 20px 0 20px 20px;
|
border-width: 20px 0 20px 20px;
|
||||||
right: 1px;
|
right: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* align: [ hcenter ] */
|
/* align: [ hcenter ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_align_hcenter
|
.cke_balloon_triangle_outer.cke_balloon_triangle_align_hcenter
|
||||||
{
|
{
|
||||||
left: 50%;
|
left: 50%;
|
||||||
margin-left: -20px;
|
margin-left: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* align: [ left ] */
|
/* align: [ left ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_align_left
|
.cke_balloon_triangle_outer.cke_balloon_triangle_align_left
|
||||||
{
|
{
|
||||||
left: 20px;
|
left: 20px;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* align: [ right ] */
|
/* align: [ right ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_align_right
|
.cke_balloon_triangle_outer.cke_balloon_triangle_align_right
|
||||||
{
|
{
|
||||||
right: 20px;
|
right: 20px;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* align: [ vcenter ] */
|
/* align: [ vcenter ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_align_vcenter
|
.cke_balloon_triangle_outer.cke_balloon_triangle_align_vcenter
|
||||||
{
|
{
|
||||||
top: 50%;
|
top: 50%;
|
||||||
margin-top: -20px;
|
margin-top: -20px;
|
||||||
}
|
}
|
||||||
|
|||||||
+223
-223
@@ -1,223 +1,223 @@
|
|||||||
/*
|
/*
|
||||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.cke_balloon
|
.cke_balloon
|
||||||
{
|
{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 10000;
|
z-index: 10000;
|
||||||
|
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border: 2px solid #aaa;
|
border: 2px solid #aaa;
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_title
|
.cke_balloon_title
|
||||||
{
|
{
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
|
||||||
color: #484848;
|
color: #484848;
|
||||||
|
|
||||||
padding: 12px 30px 12px 12px; /* Let's the title and close don't overlap each other - padding-right. */
|
padding: 12px 30px 12px 12px; /* Let's the title and close don't overlap each other - padding-right. */
|
||||||
background: #f8f8f8;
|
background: #f8f8f8;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The close button at the top of the panel. */
|
/* The close button at the top of the panel. */
|
||||||
a.cke_balloon_close_button
|
a.cke_balloon_close_button
|
||||||
{
|
{
|
||||||
background-image: url(images/close.png);
|
background-image: url(images/close.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: 50% -1px;
|
background-position: 50% -1px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
top: 8px;
|
top: 8px;
|
||||||
z-index: 5;
|
z-index: 5;
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
filter: alpha(opacity = 70);
|
filter: alpha(opacity = 70);
|
||||||
border: 2px solid transparent;
|
border: 2px solid transparent;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.cke_balloon_close_button:focus,
|
a.cke_balloon_close_button:focus,
|
||||||
a.cke_balloon_close_button:active
|
a.cke_balloon_close_button:active
|
||||||
{
|
{
|
||||||
outline: none;
|
outline: none;
|
||||||
border: 2px solid #0079f7;
|
border: 2px solid #0079f7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_content
|
.cke_balloon_content
|
||||||
{
|
{
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
min-height: 68px;
|
min-height: 68px;
|
||||||
padding: 0 6px 6px 6px;
|
padding: 0 6px 6px 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_close_button:hover
|
.cke_balloon_close_button:hover
|
||||||
{
|
{
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
filter: alpha(opacity = 100);
|
filter: alpha(opacity = 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_close_button:focus:hover
|
.cke_balloon_close_button:focus:hover
|
||||||
{
|
{
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
filter: alpha(opacity = 100);
|
filter: alpha(opacity = 100);
|
||||||
border: 2px solid #139FF7;
|
border: 2px solid #139FF7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_hidpi .cke_balloon_close_button
|
.cke_hidpi .cke_balloon_close_button
|
||||||
{
|
{
|
||||||
background-image: url(images/hidpi/close.png);
|
background-image: url(images/hidpi/close.png);
|
||||||
background-size: 16px;
|
background-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_close_button span
|
.cke_balloon_close_button span
|
||||||
{
|
{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_ltr .cke_balloon_close_button
|
.cke_ltr .cke_balloon_close_button
|
||||||
{
|
{
|
||||||
right: 10px;
|
right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_rtl .cke_balloon_close_button
|
.cke_rtl .cke_balloon_close_button
|
||||||
{
|
{
|
||||||
left: 10px;
|
left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle
|
.cke_balloon_triangle
|
||||||
{
|
{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
display: block;
|
display: block;
|
||||||
width: 0;
|
width: 0;
|
||||||
height: 0;
|
height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner
|
.cke_balloon_triangle_inner
|
||||||
{
|
{
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_outer
|
.cke_balloon_triangle_outer
|
||||||
{
|
{
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ bottom, top ] */
|
/* side: [ bottom, top ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_bottom,
|
.cke_balloon_triangle_outer.cke_balloon_triangle_bottom,
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_top
|
.cke_balloon_triangle_outer.cke_balloon_triangle_top
|
||||||
{
|
{
|
||||||
border-color: #999 transparent;
|
border-color: #999 transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_bottom,
|
.cke_balloon_triangle_inner.cke_balloon_triangle_bottom,
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_top
|
.cke_balloon_triangle_inner.cke_balloon_triangle_top
|
||||||
{
|
{
|
||||||
left: -20px;
|
left: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ bottom ] */
|
/* side: [ bottom ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_bottom
|
.cke_balloon_triangle_outer.cke_balloon_triangle_bottom
|
||||||
{
|
{
|
||||||
border-width: 20px 20px 0;
|
border-width: 20px 20px 0;
|
||||||
bottom: -20px;
|
bottom: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_bottom
|
.cke_balloon_triangle_inner.cke_balloon_triangle_bottom
|
||||||
{
|
{
|
||||||
border-color: #fff transparent;
|
border-color: #fff transparent;
|
||||||
border-width: 20px 20px 0;
|
border-width: 20px 20px 0;
|
||||||
top: -22px;
|
top: -22px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ top ] */
|
/* side: [ top ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_top
|
.cke_balloon_triangle_outer.cke_balloon_triangle_top
|
||||||
{
|
{
|
||||||
border-width: 0 20px 20px;
|
border-width: 0 20px 20px;
|
||||||
top: -20px;
|
top: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_top
|
.cke_balloon_triangle_inner.cke_balloon_triangle_top
|
||||||
{
|
{
|
||||||
border-color: #f8f8f8 transparent;
|
border-color: #f8f8f8 transparent;
|
||||||
border-width: 0 20px 20px;
|
border-width: 0 20px 20px;
|
||||||
top: 2px;
|
top: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ left, right ] */
|
/* side: [ left, right ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_left,
|
.cke_balloon_triangle_outer.cke_balloon_triangle_left,
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_right
|
.cke_balloon_triangle_outer.cke_balloon_triangle_right
|
||||||
{
|
{
|
||||||
border-color: transparent #999;
|
border-color: transparent #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_left,
|
.cke_balloon_triangle_inner.cke_balloon_triangle_left,
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_right
|
.cke_balloon_triangle_inner.cke_balloon_triangle_right
|
||||||
{
|
{
|
||||||
border-color: transparent #fff;
|
border-color: transparent #fff;
|
||||||
top: -20px;
|
top: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ left ] */
|
/* side: [ left ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_left
|
.cke_balloon_triangle_outer.cke_balloon_triangle_left
|
||||||
{
|
{
|
||||||
border-width: 20px 20px 20px 0;
|
border-width: 20px 20px 20px 0;
|
||||||
left: -20px;
|
left: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_left
|
.cke_balloon_triangle_inner.cke_balloon_triangle_left
|
||||||
{
|
{
|
||||||
border-color: transparent #fff;
|
border-color: transparent #fff;
|
||||||
border-width: 20px 20px 20px 0;
|
border-width: 20px 20px 20px 0;
|
||||||
left: 2px;
|
left: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ right ] */
|
/* side: [ right ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_right
|
.cke_balloon_triangle_outer.cke_balloon_triangle_right
|
||||||
{
|
{
|
||||||
border-width: 20px 0 20px 20px;
|
border-width: 20px 0 20px 20px;
|
||||||
right: -20px;
|
right: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_right
|
.cke_balloon_triangle_inner.cke_balloon_triangle_right
|
||||||
{
|
{
|
||||||
border-width: 20px 0 20px 20px;
|
border-width: 20px 0 20px 20px;
|
||||||
right: 2px;
|
right: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* align: [ hcenter ] */
|
/* align: [ hcenter ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_align_hcenter
|
.cke_balloon_triangle_outer.cke_balloon_triangle_align_hcenter
|
||||||
{
|
{
|
||||||
left: 50%;
|
left: 50%;
|
||||||
margin-left: -20px;
|
margin-left: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* align: [ left ] */
|
/* align: [ left ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_align_left
|
.cke_balloon_triangle_outer.cke_balloon_triangle_align_left
|
||||||
{
|
{
|
||||||
left: 20px;
|
left: 20px;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* align: [ right ] */
|
/* align: [ right ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_align_right
|
.cke_balloon_triangle_outer.cke_balloon_triangle_align_right
|
||||||
{
|
{
|
||||||
right: 20px;
|
right: 20px;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* align: [ vcenter ] */
|
/* align: [ vcenter ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_align_vcenter
|
.cke_balloon_triangle_outer.cke_balloon_triangle_align_vcenter
|
||||||
{
|
{
|
||||||
top: 50%;
|
top: 50%;
|
||||||
margin-top: -20px;
|
margin-top: -20px;
|
||||||
}
|
}
|
||||||
|
|||||||
+237
-237
@@ -1,237 +1,237 @@
|
|||||||
/*
|
/*
|
||||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.cke_balloon
|
.cke_balloon
|
||||||
{
|
{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 10000;
|
z-index: 10000;
|
||||||
|
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border: 1px solid #b2b2b2;
|
border: 1px solid #b2b2b2;
|
||||||
border-bottom-color: #999;
|
border-bottom-color: #999;
|
||||||
|
|
||||||
-moz-border-radius: 3px;
|
-moz-border-radius: 3px;
|
||||||
-webkit-border-radius: 3px;
|
-webkit-border-radius: 3px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
|
|
||||||
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
|
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
|
||||||
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
|
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
|
||||||
box-shadow: 0 0 3px rgba(0, 0, 0, .15);
|
box-shadow: 0 0 3px rgba(0, 0, 0, .15);
|
||||||
|
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_title
|
.cke_balloon_title
|
||||||
{
|
{
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
|
||||||
color: #474747;
|
color: #474747;
|
||||||
text-shadow: 0 1px 0 rgba(255,255,255,.75);
|
text-shadow: 0 1px 0 rgba(255,255,255,.75);
|
||||||
|
|
||||||
border-bottom: 1px solid #999;
|
border-bottom: 1px solid #999;
|
||||||
padding: 6px 10px;
|
padding: 6px 10px;
|
||||||
|
|
||||||
-moz-border-radius: 2px 2px 0 0;
|
-moz-border-radius: 2px 2px 0 0;
|
||||||
-webkit-border-radius: 2px 2px 0 0;
|
-webkit-border-radius: 2px 2px 0 0;
|
||||||
border-radius: 2px 2px 0 0;
|
border-radius: 2px 2px 0 0;
|
||||||
|
|
||||||
-moz-box-shadow: 0 1px 0 #fff inset;
|
-moz-box-shadow: 0 1px 0 #fff inset;
|
||||||
-webkit-box-shadow: 0 1px 0 #fff inset;
|
-webkit-box-shadow: 0 1px 0 #fff inset;
|
||||||
box-shadow: 0 1px 0 #fff inset;
|
box-shadow: 0 1px 0 #fff inset;
|
||||||
|
|
||||||
/* Let's the title and close don't overlap each other */
|
/* Let's the title and close don't overlap each other */
|
||||||
padding-right: 30px;
|
padding-right: 30px;
|
||||||
|
|
||||||
background: #cfd1cf;
|
background: #cfd1cf;
|
||||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#cfd1cf));
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#cfd1cf));
|
||||||
background-image: -moz-linear-gradient(top, #f5f5f5, #cfd1cf);
|
background-image: -moz-linear-gradient(top, #f5f5f5, #cfd1cf);
|
||||||
background-image: -webkit-linear-gradient(top, #f5f5f5, #cfd1cf);
|
background-image: -webkit-linear-gradient(top, #f5f5f5, #cfd1cf);
|
||||||
background-image: -o-linear-gradient(top, #f5f5f5, #cfd1cf);
|
background-image: -o-linear-gradient(top, #f5f5f5, #cfd1cf);
|
||||||
background-image: -ms-linear-gradient(top, #f5f5f5, #cfd1cf);
|
background-image: -ms-linear-gradient(top, #f5f5f5, #cfd1cf);
|
||||||
background-image: linear-gradient(top, #f5f5f5, #cfd1cf);
|
background-image: linear-gradient(top, #f5f5f5, #cfd1cf);
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f5f5f5', endColorstr='#cfd1cf');
|
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f5f5f5', endColorstr='#cfd1cf');
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The close button at the top of the panel. */
|
/* The close button at the top of the panel. */
|
||||||
a.cke_balloon_close_button
|
a.cke_balloon_close_button
|
||||||
{
|
{
|
||||||
background-image: url(images/close.png);
|
background-image: url(images/close.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: 50%;
|
background-position: 50%;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
top: 3px;
|
top: 3px;
|
||||||
z-index: 5;
|
z-index: 5;
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
filter: alpha(opacity = 80);
|
filter: alpha(opacity = 80);
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_content
|
.cke_balloon_content
|
||||||
{
|
{
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
min-height: 68px;
|
min-height: 68px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_close_button:hover
|
.cke_balloon_close_button:hover
|
||||||
{
|
{
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
filter: alpha(opacity = 100);
|
filter: alpha(opacity = 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_hidpi .cke_balloon_close_button
|
.cke_hidpi .cke_balloon_close_button
|
||||||
{
|
{
|
||||||
background-image: url(images/hidpi/close.png);
|
background-image: url(images/hidpi/close.png);
|
||||||
background-size: 16px;
|
background-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_close_button span
|
.cke_balloon_close_button span
|
||||||
{
|
{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_ltr .cke_balloon_close_button
|
.cke_ltr .cke_balloon_close_button
|
||||||
{
|
{
|
||||||
right: 5px;
|
right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_rtl .cke_balloon_close_button
|
.cke_rtl .cke_balloon_close_button
|
||||||
{
|
{
|
||||||
left: 6px;
|
left: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle
|
.cke_balloon_triangle
|
||||||
{
|
{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
display: block;
|
display: block;
|
||||||
width: 0;
|
width: 0;
|
||||||
height: 0;
|
height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner
|
.cke_balloon_triangle_inner
|
||||||
{
|
{
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_outer
|
.cke_balloon_triangle_outer
|
||||||
{
|
{
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ bottom, top ] */
|
/* side: [ bottom, top ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_bottom,
|
.cke_balloon_triangle_outer.cke_balloon_triangle_bottom,
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_top
|
.cke_balloon_triangle_outer.cke_balloon_triangle_top
|
||||||
{
|
{
|
||||||
border-color: #6B6B6B transparent;
|
border-color: #6B6B6B transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_bottom,
|
.cke_balloon_triangle_inner.cke_balloon_triangle_bottom,
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_top
|
.cke_balloon_triangle_inner.cke_balloon_triangle_top
|
||||||
{
|
{
|
||||||
left: -20px;
|
left: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ bottom ] */
|
/* side: [ bottom ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_bottom
|
.cke_balloon_triangle_outer.cke_balloon_triangle_bottom
|
||||||
{
|
{
|
||||||
border-width: 20px 20px 0;
|
border-width: 20px 20px 0;
|
||||||
bottom: -20px;
|
bottom: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_bottom
|
.cke_balloon_triangle_inner.cke_balloon_triangle_bottom
|
||||||
{
|
{
|
||||||
border-color: #fff transparent;
|
border-color: #fff transparent;
|
||||||
border-width: 20px 20px 0;
|
border-width: 20px 20px 0;
|
||||||
top: -21px;
|
top: -21px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ top ] */
|
/* side: [ top ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_top
|
.cke_balloon_triangle_outer.cke_balloon_triangle_top
|
||||||
{
|
{
|
||||||
border-width: 0 20px 20px;
|
border-width: 0 20px 20px;
|
||||||
top: -20px;
|
top: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_top
|
.cke_balloon_triangle_inner.cke_balloon_triangle_top
|
||||||
{
|
{
|
||||||
border-color: #f5f5f5 transparent;
|
border-color: #f5f5f5 transparent;
|
||||||
border-width: 0 20px 20px;
|
border-width: 0 20px 20px;
|
||||||
top: 1px;
|
top: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ left, right ] */
|
/* side: [ left, right ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_left,
|
.cke_balloon_triangle_outer.cke_balloon_triangle_left,
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_right
|
.cke_balloon_triangle_outer.cke_balloon_triangle_right
|
||||||
{
|
{
|
||||||
border-color: transparent #6B6B6B;
|
border-color: transparent #6B6B6B;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_left,
|
.cke_balloon_triangle_inner.cke_balloon_triangle_left,
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_right
|
.cke_balloon_triangle_inner.cke_balloon_triangle_right
|
||||||
{
|
{
|
||||||
border-color: transparent #fff;
|
border-color: transparent #fff;
|
||||||
top: -20px;
|
top: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ left ] */
|
/* side: [ left ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_left
|
.cke_balloon_triangle_outer.cke_balloon_triangle_left
|
||||||
{
|
{
|
||||||
border-width: 20px 20px 20px 0;
|
border-width: 20px 20px 20px 0;
|
||||||
left: -20px;
|
left: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_left
|
.cke_balloon_triangle_inner.cke_balloon_triangle_left
|
||||||
{
|
{
|
||||||
border-color: transparent #fff;
|
border-color: transparent #fff;
|
||||||
border-width: 20px 20px 20px 0;
|
border-width: 20px 20px 20px 0;
|
||||||
left: 1px;
|
left: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side: [ right ] */
|
/* side: [ right ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_right
|
.cke_balloon_triangle_outer.cke_balloon_triangle_right
|
||||||
{
|
{
|
||||||
border-width: 20px 0 20px 20px;
|
border-width: 20px 0 20px 20px;
|
||||||
right: -20px;
|
right: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_balloon_triangle_inner.cke_balloon_triangle_right
|
.cke_balloon_triangle_inner.cke_balloon_triangle_right
|
||||||
{
|
{
|
||||||
border-width: 20px 0 20px 20px;
|
border-width: 20px 0 20px 20px;
|
||||||
right: 1px;
|
right: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* align: [ hcenter ] */
|
/* align: [ hcenter ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_align_hcenter
|
.cke_balloon_triangle_outer.cke_balloon_triangle_align_hcenter
|
||||||
{
|
{
|
||||||
left: 50%;
|
left: 50%;
|
||||||
margin-left: -20px;
|
margin-left: -20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* align: [ left ] */
|
/* align: [ left ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_align_left
|
.cke_balloon_triangle_outer.cke_balloon_triangle_align_left
|
||||||
{
|
{
|
||||||
left: 20px;
|
left: 20px;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* align: [ right ] */
|
/* align: [ right ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_align_right
|
.cke_balloon_triangle_outer.cke_balloon_triangle_align_right
|
||||||
{
|
{
|
||||||
right: 20px;
|
right: 20px;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* align: [ vcenter ] */
|
/* align: [ vcenter ] */
|
||||||
.cke_balloon_triangle_outer.cke_balloon_triangle_align_vcenter
|
.cke_balloon_triangle_outer.cke_balloon_triangle_align_vcenter
|
||||||
{
|
{
|
||||||
top: 50%;
|
top: 50%;
|
||||||
margin-top: -20px;
|
margin-top: -20px;
|
||||||
}
|
}
|
||||||
|
|||||||
+827
-827
File diff suppressed because it is too large
Load Diff
+171
-171
@@ -1,171 +1,171 @@
|
|||||||
# Highlight.js
|
# Highlight.js
|
||||||
|
|
||||||
Highlight.js нужен для подсветки синтаксиса в примерах кода в блогах,
|
Highlight.js нужен для подсветки синтаксиса в примерах кода в блогах,
|
||||||
форумах и вообще на любых веб-страницах. Пользоваться им очень просто,
|
форумах и вообще на любых веб-страницах. Пользоваться им очень просто,
|
||||||
потому что работает он автоматически: сам находит блоки кода, сам
|
потому что работает он автоматически: сам находит блоки кода, сам
|
||||||
определяет язык, сам подсвечивает.
|
определяет язык, сам подсвечивает.
|
||||||
|
|
||||||
Автоопределением языка можно управлять, когда оно не справляется само (см.
|
Автоопределением языка можно управлять, когда оно не справляется само (см.
|
||||||
дальше "Эвристика").
|
дальше "Эвристика").
|
||||||
|
|
||||||
|
|
||||||
## Простое использование
|
## Простое использование
|
||||||
|
|
||||||
Подключите библиотеку и стиль на страницу и повесть вызов подсветки на
|
Подключите библиотеку и стиль на страницу и повесть вызов подсветки на
|
||||||
загрузку страницы:
|
загрузку страницы:
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<link rel="stylesheet" href="styles/default.css">
|
<link rel="stylesheet" href="styles/default.css">
|
||||||
<script src="highlight.pack.js"></script>
|
<script src="highlight.pack.js"></script>
|
||||||
<script>hljs.initHighlightingOnLoad();</script>
|
<script>hljs.initHighlightingOnLoad();</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
Весь код на странице, обрамлённый в теги `<pre><code> .. </code></pre>`
|
Весь код на странице, обрамлённый в теги `<pre><code> .. </code></pre>`
|
||||||
будет автоматически подсвечен. Если вы используете другие теги или хотите
|
будет автоматически подсвечен. Если вы используете другие теги или хотите
|
||||||
подсвечивать блоки кода динамически, читайте "Инициализацию вручную" ниже.
|
подсвечивать блоки кода динамически, читайте "Инициализацию вручную" ниже.
|
||||||
|
|
||||||
- Вы можете скачать собственную версию "highlight.pack.js" или сослаться
|
- Вы можете скачать собственную версию "highlight.pack.js" или сослаться
|
||||||
на захостенный файл, как описано на странице загрузки:
|
на захостенный файл, как описано на странице загрузки:
|
||||||
<http://highlightjs.org/download/>
|
<http://highlightjs.org/download/>
|
||||||
|
|
||||||
- Стилевые темы можно найти в загруженном архиве или также использовать
|
- Стилевые темы можно найти в загруженном архиве или также использовать
|
||||||
захостенные. Чтобы сделать собственный стиль для своего сайта, вам
|
захостенные. Чтобы сделать собственный стиль для своего сайта, вам
|
||||||
будет полезен [CSS classes reference][cr], который тоже есть в архиве.
|
будет полезен [CSS classes reference][cr], который тоже есть в архиве.
|
||||||
|
|
||||||
[cr]: http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html
|
[cr]: http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html
|
||||||
|
|
||||||
|
|
||||||
## node.js
|
## node.js
|
||||||
|
|
||||||
Highlight.js можно использовать в node.js. Библиотеку со всеми возможными языками можно
|
Highlight.js можно использовать в node.js. Библиотеку со всеми возможными языками можно
|
||||||
установить с NPM:
|
установить с NPM:
|
||||||
|
|
||||||
npm install highlight.js
|
npm install highlight.js
|
||||||
|
|
||||||
Также её можно собрать из исходников с только теми языками, которые нужны:
|
Также её можно собрать из исходников с только теми языками, которые нужны:
|
||||||
|
|
||||||
python3 tools/build.py -tnode lang1 lang2 ..
|
python3 tools/build.py -tnode lang1 lang2 ..
|
||||||
|
|
||||||
Использование библиотеки:
|
Использование библиотеки:
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
var hljs = require('highlight.js');
|
var hljs = require('highlight.js');
|
||||||
|
|
||||||
// Если вы знаете язык
|
// Если вы знаете язык
|
||||||
hljs.highlight(lang, code).value;
|
hljs.highlight(lang, code).value;
|
||||||
|
|
||||||
// Автоопределение языка
|
// Автоопределение языка
|
||||||
hljs.highlightAuto(code).value;
|
hljs.highlightAuto(code).value;
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## AMD
|
## AMD
|
||||||
|
|
||||||
Highlight.js можно использовать с загрузчиком AMD-модулей. Для этого его
|
Highlight.js можно использовать с загрузчиком AMD-модулей. Для этого его
|
||||||
нужно собрать из исходников следующей командой:
|
нужно собрать из исходников следующей командой:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ python3 tools/build.py -tamd lang1 lang2 ..
|
$ python3 tools/build.py -tamd lang1 lang2 ..
|
||||||
```
|
```
|
||||||
|
|
||||||
Она создаст файл `build/highlight.pack.js`, который является загружаемым
|
Она создаст файл `build/highlight.pack.js`, который является загружаемым
|
||||||
AMD-модулем и содержит все выбранные при сборке языки. Используется он так:
|
AMD-модулем и содержит все выбранные при сборке языки. Используется он так:
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
require(["highlight.js/build/highlight.pack"], function(hljs){
|
require(["highlight.js/build/highlight.pack"], function(hljs){
|
||||||
|
|
||||||
// Если вы знаете язык
|
// Если вы знаете язык
|
||||||
hljs.highlight(lang, code).value;
|
hljs.highlight(lang, code).value;
|
||||||
|
|
||||||
// Автоопределение языка
|
// Автоопределение языка
|
||||||
hljs.highlightAuto(code).value;
|
hljs.highlightAuto(code).value;
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## Замена TABов
|
## Замена TABов
|
||||||
|
|
||||||
Также вы можете заменить символы TAB ('\x09'), используемые для отступов, на
|
Также вы можете заменить символы TAB ('\x09'), используемые для отступов, на
|
||||||
фиксированное количество пробелов или на отдельный `<span>`, чтобы задать ему
|
фиксированное количество пробелов или на отдельный `<span>`, чтобы задать ему
|
||||||
какой-нибудь специальный стиль:
|
какой-нибудь специальный стиль:
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
hljs.configure({tabReplace: ' '}); // 4 spaces
|
hljs.configure({tabReplace: ' '}); // 4 spaces
|
||||||
// ... or
|
// ... or
|
||||||
hljs.configure({tabReplace: '<span class="indent">\t</span>'});
|
hljs.configure({tabReplace: '<span class="indent">\t</span>'});
|
||||||
|
|
||||||
hljs.initHighlightingOnLoad();
|
hljs.initHighlightingOnLoad();
|
||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## Инициализация вручную
|
## Инициализация вручную
|
||||||
|
|
||||||
Если вы используете другие теги для блоков кода, вы можете инициализировать их
|
Если вы используете другие теги для блоков кода, вы можете инициализировать их
|
||||||
явно с помощью функции `highlightBlock(code)`. Она принимает DOM-элемент с
|
явно с помощью функции `highlightBlock(code)`. Она принимает DOM-элемент с
|
||||||
текстом расцвечиваемого кода и опционально - строчку для замены символов TAB.
|
текстом расцвечиваемого кода и опционально - строчку для замены символов TAB.
|
||||||
|
|
||||||
Например с использованием jQuery код инициализации может выглядеть так:
|
Например с использованием jQuery код инициализации может выглядеть так:
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('pre code').each(function(i, e) {hljs.highlightBlock(e)});
|
$('pre code').each(function(i, e) {hljs.highlightBlock(e)});
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
`highlightBlock` можно также использовать, чтобы подсветить блоки кода,
|
`highlightBlock` можно также использовать, чтобы подсветить блоки кода,
|
||||||
добавленные на страницу динамически. Только убедитесь, что вы не делаете этого
|
добавленные на страницу динамически. Только убедитесь, что вы не делаете этого
|
||||||
повторно для уже раскрашенных блоков.
|
повторно для уже раскрашенных блоков.
|
||||||
|
|
||||||
Если ваш блок кода использует `<br>` вместо переводов строки (т.е. если это не
|
Если ваш блок кода использует `<br>` вместо переводов строки (т.е. если это не
|
||||||
`<pre>`), включите опцию `useBR`:
|
`<pre>`), включите опцию `useBR`:
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
hljs.configure({useBR: true});
|
hljs.configure({useBR: true});
|
||||||
$('div.code').each(function(i, e) {hljs.highlightBlock(e)});
|
$('div.code').each(function(i, e) {hljs.highlightBlock(e)});
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## Эвристика
|
## Эвристика
|
||||||
|
|
||||||
Определение языка, на котором написан фрагмент, делается с помощью
|
Определение языка, на котором написан фрагмент, делается с помощью
|
||||||
довольно простой эвристики: программа пытается расцветить фрагмент всеми
|
довольно простой эвристики: программа пытается расцветить фрагмент всеми
|
||||||
языками подряд, и для каждого языка считает количество подошедших
|
языками подряд, и для каждого языка считает количество подошедших
|
||||||
синтаксически конструкций и ключевых слов. Для какого языка нашлось больше,
|
синтаксически конструкций и ключевых слов. Для какого языка нашлось больше,
|
||||||
тот и выбирается.
|
тот и выбирается.
|
||||||
|
|
||||||
Это означает, что в коротких фрагментах высока вероятность ошибки, что
|
Это означает, что в коротких фрагментах высока вероятность ошибки, что
|
||||||
периодически и случается. Чтобы указать язык фрагмента явно, надо написать
|
периодически и случается. Чтобы указать язык фрагмента явно, надо написать
|
||||||
его название в виде класса к элементу `<code>`:
|
его название в виде класса к элементу `<code>`:
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<pre><code class="html">...</code></pre>
|
<pre><code class="html">...</code></pre>
|
||||||
```
|
```
|
||||||
|
|
||||||
Можно использовать рекомендованные в HTML5 названия классов:
|
Можно использовать рекомендованные в HTML5 названия классов:
|
||||||
"language-html", "language-php". Также можно назначать классы на элемент
|
"language-html", "language-php". Также можно назначать классы на элемент
|
||||||
`<pre>`.
|
`<pre>`.
|
||||||
|
|
||||||
Чтобы запретить расцветку фрагмента вообще, используется класс "no-highlight":
|
Чтобы запретить расцветку фрагмента вообще, используется класс "no-highlight":
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<pre><code class="no-highlight">...</code></pre>
|
<pre><code class="no-highlight">...</code></pre>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## Экспорт
|
## Экспорт
|
||||||
|
|
||||||
В файле export.html находится небольшая программка, которая показывает и дает
|
В файле export.html находится небольшая программка, которая показывает и дает
|
||||||
скопировать непосредственно HTML-код подсветки для любого заданного фрагмента кода.
|
скопировать непосредственно HTML-код подсветки для любого заданного фрагмента кода.
|
||||||
Это может понадобится например на сайте, на котором нельзя подключить сам скрипт
|
Это может понадобится например на сайте, на котором нельзя подключить сам скрипт
|
||||||
highlight.js.
|
highlight.js.
|
||||||
|
|
||||||
|
|
||||||
## Координаты
|
## Координаты
|
||||||
|
|
||||||
- Версия: 8.0
|
- Версия: 8.0
|
||||||
- URL: http://highlightjs.org/
|
- URL: http://highlightjs.org/
|
||||||
|
|
||||||
Лицензионное соглашение читайте в файле LICENSE.
|
Лицензионное соглашение читайте в файле LICENSE.
|
||||||
Список авторов и соавторов читайте в файле AUTHORS.ru.txt
|
Список авторов и соавторов читайте в файле AUTHORS.ru.txt
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
+160
-160
@@ -1,160 +1,160 @@
|
|||||||
/*
|
/*
|
||||||
Date: 17.V.2011
|
Date: 17.V.2011
|
||||||
Author: pumbur <pumbur@pumbur.net>
|
Author: pumbur <pumbur@pumbur.net>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs
|
.hljs
|
||||||
{
|
{
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: #222;
|
background: #222;
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile .hljs-header *,
|
.profile .hljs-header *,
|
||||||
.ini .hljs-title,
|
.ini .hljs-title,
|
||||||
.nginx .hljs-title
|
.nginx .hljs-title
|
||||||
{
|
{
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-preprocessor .hljs-title,
|
.hljs-preprocessor .hljs-title,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.profile .hljs-summary,
|
.profile .hljs-summary,
|
||||||
.diff,
|
.diff,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.css .hljs-rules,
|
.css .hljs-rules,
|
||||||
.tex .hljs-special
|
.tex .hljs-special
|
||||||
{
|
{
|
||||||
color: #444;
|
color: #444;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.diff .hljs-change,
|
.diff .hljs-change,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.xml .hljs-attribute,
|
.xml .hljs-attribute,
|
||||||
.smalltalk .hljs-char,
|
.smalltalk .hljs-char,
|
||||||
.xml .hljs-value,
|
.xml .hljs-value,
|
||||||
.ini .hljs-value,
|
.ini .hljs-value,
|
||||||
.clojure .hljs-attribute,
|
.clojure .hljs-attribute,
|
||||||
.coffeescript .hljs-attribute
|
.coffeescript .hljs-attribute
|
||||||
{
|
{
|
||||||
color: #ffcc33;
|
color: #ffcc33;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-addition
|
.hljs-addition
|
||||||
{
|
{
|
||||||
color: #00cc66;
|
color: #00cc66;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.vhdl .hljs-typename,
|
.vhdl .hljs-typename,
|
||||||
.go .hljs-constant,
|
.go .hljs-constant,
|
||||||
.go .hljs-typename,
|
.go .hljs-typename,
|
||||||
.ini .hljs-keyword,
|
.ini .hljs-keyword,
|
||||||
.lua .hljs-title,
|
.lua .hljs-title,
|
||||||
.perl .hljs-variable,
|
.perl .hljs-variable,
|
||||||
.php .hljs-variable,
|
.php .hljs-variable,
|
||||||
.mel .hljs-variable,
|
.mel .hljs-variable,
|
||||||
.django .hljs-variable,
|
.django .hljs-variable,
|
||||||
.css .funtion,
|
.css .funtion,
|
||||||
.smalltalk .method,
|
.smalltalk .method,
|
||||||
.hljs-hexcolor,
|
.hljs-hexcolor,
|
||||||
.hljs-important,
|
.hljs-important,
|
||||||
.hljs-flow,
|
.hljs-flow,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.parser3 .hljs-variable
|
.parser3 .hljs-variable
|
||||||
{
|
{
|
||||||
color: #32AAEE;
|
color: #32AAEE;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-tag .hljs-title,
|
.hljs-tag .hljs-title,
|
||||||
.css .hljs-tag,
|
.css .hljs-tag,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-pseudo,
|
.css .hljs-pseudo,
|
||||||
.css .hljs-attr_selector,
|
.css .hljs-attr_selector,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.clojure .hljs-built_in,
|
.clojure .hljs-built_in,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status
|
.hljs-status
|
||||||
{
|
{
|
||||||
color: #6644aa;
|
color: #6644aa;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.vala .hljs-constant,
|
.vala .hljs-constant,
|
||||||
.hljs-parent,
|
.hljs-parent,
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.hljs-template_tag,
|
.hljs-template_tag,
|
||||||
.css .hljs-keyword,
|
.css .hljs-keyword,
|
||||||
.objectivec .hljs-class .hljs-id,
|
.objectivec .hljs-class .hljs-id,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.lisp .hljs-keyword,
|
.lisp .hljs-keyword,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.nginx .hljs-variable,
|
.nginx .hljs-variable,
|
||||||
.hljs-envvar,
|
.hljs-envvar,
|
||||||
.bash .hljs-variable,
|
.bash .hljs-variable,
|
||||||
.go .hljs-built_in,
|
.go .hljs-built_in,
|
||||||
.vbscript .hljs-built_in,
|
.vbscript .hljs-built_in,
|
||||||
.lua .hljs-built_in,
|
.lua .hljs-built_in,
|
||||||
.rsl .hljs-built_in,
|
.rsl .hljs-built_in,
|
||||||
.tail,
|
.tail,
|
||||||
.avrasm .hljs-label,
|
.avrasm .hljs-label,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.tex .hljs-formula *
|
.tex .hljs-formula *
|
||||||
{
|
{
|
||||||
color: #bb1166;
|
color: #bb1166;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-yardoctag,
|
.hljs-yardoctag,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.profile .hljs-header,
|
.profile .hljs-header,
|
||||||
.ini .hljs-title,
|
.ini .hljs-title,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.parser3 .hljs-title
|
.parser3 .hljs-title
|
||||||
{
|
{
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata
|
.xml .hljs-cdata
|
||||||
{
|
{
|
||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs,
|
.hljs,
|
||||||
.javascript,
|
.javascript,
|
||||||
.css,
|
.css,
|
||||||
.xml,
|
.xml,
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.diff .hljs-chunk,
|
.diff .hljs-chunk,
|
||||||
.css .hljs-value,
|
.css .hljs-value,
|
||||||
.css .hljs-attribute,
|
.css .hljs-attribute,
|
||||||
.lisp .hljs-string,
|
.lisp .hljs-string,
|
||||||
.lisp .hljs-number,
|
.lisp .hljs-number,
|
||||||
.tail .hljs-params,
|
.tail .hljs-params,
|
||||||
.hljs-container,
|
.hljs-container,
|
||||||
.haskell *,
|
.haskell *,
|
||||||
.erlang *,
|
.erlang *,
|
||||||
.erlang_repl *
|
.erlang_repl *
|
||||||
{
|
{
|
||||||
color: #aaa;
|
color: #aaa;
|
||||||
}
|
}
|
||||||
|
|||||||
+50
-50
@@ -1,50 +1,50 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
|
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: white; color: black;
|
background: white; color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-filter .hljs-argument,
|
.hljs-filter .hljs-argument,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.hljs-change,
|
.hljs-change,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.nginx .hljs-built_in,
|
.nginx .hljs-built_in,
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
color: #888;
|
color: #888;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.apache .hljs-sqbracket {
|
.apache .hljs-sqbracket {
|
||||||
color: #CCC;
|
color: #CCC;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-tag .hljs-title,
|
.hljs-tag .hljs-title,
|
||||||
.ini .hljs-title,
|
.ini .hljs-title,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.clojure .hljs-title,
|
.clojure .hljs-title,
|
||||||
.http .hljs-title,
|
.http .hljs-title,
|
||||||
.nginx .hljs-title,
|
.nginx .hljs-title,
|
||||||
.css .hljs-tag,
|
.css .hljs-tag,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.hljs-flow,
|
.hljs-flow,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status {
|
.hljs-status {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|||||||
+93
-93
@@ -1,93 +1,93 @@
|
|||||||
/* Base16 Atelier Dune Dark - Theme */
|
/* Base16 Atelier Dune Dark - Theme */
|
||||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */
|
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */
|
||||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||||
|
|
||||||
/* Atelier Dune Dark Comment */
|
/* Atelier Dune Dark Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #999580;
|
color: #999580;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Dune Dark Red */
|
/* Atelier Dune Dark Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #d73737;
|
color: #d73737;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Dune Dark Orange */
|
/* Atelier Dune Dark Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #b65611;
|
color: #b65611;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Dune Dark Yellow */
|
/* Atelier Dune Dark Yellow */
|
||||||
.ruby .hljs-class .hljs-title,
|
.ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #cfb017;
|
color: #cfb017;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Dune Dark Green */
|
/* Atelier Dune Dark Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #60ac39;
|
color: #60ac39;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Dune Dark Aqua */
|
/* Atelier Dune Dark Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #1fad83;
|
color: #1fad83;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Dune Dark Blue */
|
/* Atelier Dune Dark Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #6684e1;
|
color: #6684e1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Dune Dark Purple */
|
/* Atelier Dune Dark Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #b854d4;
|
color: #b854d4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #292824;
|
background: #292824;
|
||||||
color: #a6a28c;
|
color: #a6a28c;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+93
-93
@@ -1,93 +1,93 @@
|
|||||||
/* Base16 Atelier Dune Light - Theme */
|
/* Base16 Atelier Dune Light - Theme */
|
||||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */
|
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */
|
||||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||||
|
|
||||||
/* Atelier Dune Light Comment */
|
/* Atelier Dune Light Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #7d7a68;
|
color: #7d7a68;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Dune Light Red */
|
/* Atelier Dune Light Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #d73737;
|
color: #d73737;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Dune Light Orange */
|
/* Atelier Dune Light Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #b65611;
|
color: #b65611;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Dune Light Yellow */
|
/* Atelier Dune Light Yellow */
|
||||||
.hljs-ruby .hljs-class .hljs-title,
|
.hljs-ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #cfb017;
|
color: #cfb017;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Dune Light Green */
|
/* Atelier Dune Light Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #60ac39;
|
color: #60ac39;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Dune Light Aqua */
|
/* Atelier Dune Light Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #1fad83;
|
color: #1fad83;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Dune Light Blue */
|
/* Atelier Dune Light Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #6684e1;
|
color: #6684e1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Dune Light Purple */
|
/* Atelier Dune Light Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #b854d4;
|
color: #b854d4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #fefbec;
|
background: #fefbec;
|
||||||
color: #6e6b5e;
|
color: #6e6b5e;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+93
-93
@@ -1,93 +1,93 @@
|
|||||||
/* Base16 Atelier Forest Dark - Theme */
|
/* Base16 Atelier Forest Dark - Theme */
|
||||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */
|
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */
|
||||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||||
|
|
||||||
/* Atelier Forest Dark Comment */
|
/* Atelier Forest Dark Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #9c9491;
|
color: #9c9491;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Forest Dark Red */
|
/* Atelier Forest Dark Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #f22c40;
|
color: #f22c40;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Forest Dark Orange */
|
/* Atelier Forest Dark Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #df5320;
|
color: #df5320;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Forest Dark Yellow */
|
/* Atelier Forest Dark Yellow */
|
||||||
.hljs-ruby .hljs-class .hljs-title,
|
.hljs-ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #d5911a;
|
color: #d5911a;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Forest Dark Green */
|
/* Atelier Forest Dark Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #5ab738;
|
color: #5ab738;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Forest Dark Aqua */
|
/* Atelier Forest Dark Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #00ad9c;
|
color: #00ad9c;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Forest Dark Blue */
|
/* Atelier Forest Dark Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #407ee7;
|
color: #407ee7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Forest Dark Purple */
|
/* Atelier Forest Dark Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #6666ea;
|
color: #6666ea;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #2c2421;
|
background: #2c2421;
|
||||||
color: #a8a19f;
|
color: #a8a19f;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+93
-93
@@ -1,93 +1,93 @@
|
|||||||
/* Base16 Atelier Forest Light - Theme */
|
/* Base16 Atelier Forest Light - Theme */
|
||||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */
|
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */
|
||||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||||
|
|
||||||
/* Atelier Forest Light Comment */
|
/* Atelier Forest Light Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #766e6b;
|
color: #766e6b;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Forest Light Red */
|
/* Atelier Forest Light Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #f22c40;
|
color: #f22c40;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Forest Light Orange */
|
/* Atelier Forest Light Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #df5320;
|
color: #df5320;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Forest Light Yellow */
|
/* Atelier Forest Light Yellow */
|
||||||
.hljs-ruby .hljs-class .hljs-title,
|
.hljs-ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #d5911a;
|
color: #d5911a;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Forest Light Green */
|
/* Atelier Forest Light Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #5ab738;
|
color: #5ab738;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Forest Light Aqua */
|
/* Atelier Forest Light Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #00ad9c;
|
color: #00ad9c;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Forest Light Blue */
|
/* Atelier Forest Light Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #407ee7;
|
color: #407ee7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Forest Light Purple */
|
/* Atelier Forest Light Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #6666ea;
|
color: #6666ea;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #f1efee;
|
background: #f1efee;
|
||||||
color: #68615e;
|
color: #68615e;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+93
-93
@@ -1,93 +1,93 @@
|
|||||||
/* Base16 Atelier Heath Dark - Theme */
|
/* Base16 Atelier Heath Dark - Theme */
|
||||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
|
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
|
||||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||||
|
|
||||||
/* Atelier Heath Dark Comment */
|
/* Atelier Heath Dark Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #9e8f9e;
|
color: #9e8f9e;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Heath Dark Red */
|
/* Atelier Heath Dark Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #ca402b;
|
color: #ca402b;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Heath Dark Orange */
|
/* Atelier Heath Dark Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #a65926;
|
color: #a65926;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Heath Dark Yellow */
|
/* Atelier Heath Dark Yellow */
|
||||||
.hljs-ruby .hljs-class .hljs-title,
|
.hljs-ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #bb8a35;
|
color: #bb8a35;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Heath Dark Green */
|
/* Atelier Heath Dark Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #379a37;
|
color: #379a37;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Heath Dark Aqua */
|
/* Atelier Heath Dark Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #159393;
|
color: #159393;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Heath Dark Blue */
|
/* Atelier Heath Dark Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #516aec;
|
color: #516aec;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Heath Dark Purple */
|
/* Atelier Heath Dark Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #7b59c0;
|
color: #7b59c0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #292329;
|
background: #292329;
|
||||||
color: #ab9bab;
|
color: #ab9bab;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+93
-93
@@ -1,93 +1,93 @@
|
|||||||
/* Base16 Atelier Heath Light - Theme */
|
/* Base16 Atelier Heath Light - Theme */
|
||||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
|
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
|
||||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||||
|
|
||||||
/* Atelier Heath Light Comment */
|
/* Atelier Heath Light Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #776977;
|
color: #776977;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Heath Light Red */
|
/* Atelier Heath Light Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #ca402b;
|
color: #ca402b;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Heath Light Orange */
|
/* Atelier Heath Light Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #a65926;
|
color: #a65926;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Heath Light Yellow */
|
/* Atelier Heath Light Yellow */
|
||||||
.hljs-ruby .hljs-class .hljs-title,
|
.hljs-ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #bb8a35;
|
color: #bb8a35;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Heath Light Green */
|
/* Atelier Heath Light Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #379a37;
|
color: #379a37;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Heath Light Aqua */
|
/* Atelier Heath Light Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #159393;
|
color: #159393;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Heath Light Blue */
|
/* Atelier Heath Light Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #516aec;
|
color: #516aec;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Heath Light Purple */
|
/* Atelier Heath Light Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #7b59c0;
|
color: #7b59c0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #f7f3f7;
|
background: #f7f3f7;
|
||||||
color: #695d69;
|
color: #695d69;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+93
-93
@@ -1,93 +1,93 @@
|
|||||||
/* Base16 Atelier Lakeside Dark - Theme */
|
/* Base16 Atelier Lakeside Dark - Theme */
|
||||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */
|
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */
|
||||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||||
|
|
||||||
/* Atelier Lakeside Dark Comment */
|
/* Atelier Lakeside Dark Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #7195a8;
|
color: #7195a8;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Lakeside Dark Red */
|
/* Atelier Lakeside Dark Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #d22d72;
|
color: #d22d72;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Lakeside Dark Orange */
|
/* Atelier Lakeside Dark Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #935c25;
|
color: #935c25;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Lakeside Dark Yellow */
|
/* Atelier Lakeside Dark Yellow */
|
||||||
.hljs-ruby .hljs-class .hljs-title,
|
.hljs-ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #8a8a0f;
|
color: #8a8a0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Lakeside Dark Green */
|
/* Atelier Lakeside Dark Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #568c3b;
|
color: #568c3b;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Lakeside Dark Aqua */
|
/* Atelier Lakeside Dark Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #2d8f6f;
|
color: #2d8f6f;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Lakeside Dark Blue */
|
/* Atelier Lakeside Dark Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #257fad;
|
color: #257fad;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Lakeside Dark Purple */
|
/* Atelier Lakeside Dark Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #5d5db1;
|
color: #5d5db1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #1f292e;
|
background: #1f292e;
|
||||||
color: #7ea2b4;
|
color: #7ea2b4;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+93
-93
@@ -1,93 +1,93 @@
|
|||||||
/* Base16 Atelier Lakeside Light - Theme */
|
/* Base16 Atelier Lakeside Light - Theme */
|
||||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */
|
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */
|
||||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||||
|
|
||||||
/* Atelier Lakeside Light Comment */
|
/* Atelier Lakeside Light Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #5a7b8c;
|
color: #5a7b8c;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Lakeside Light Red */
|
/* Atelier Lakeside Light Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #d22d72;
|
color: #d22d72;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Lakeside Light Orange */
|
/* Atelier Lakeside Light Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #935c25;
|
color: #935c25;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Lakeside Light Yellow */
|
/* Atelier Lakeside Light Yellow */
|
||||||
.hljs-ruby .hljs-class .hljs-title,
|
.hljs-ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #8a8a0f;
|
color: #8a8a0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Lakeside Light Green */
|
/* Atelier Lakeside Light Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #568c3b;
|
color: #568c3b;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Lakeside Light Aqua */
|
/* Atelier Lakeside Light Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #2d8f6f;
|
color: #2d8f6f;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Lakeside Light Blue */
|
/* Atelier Lakeside Light Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #257fad;
|
color: #257fad;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Lakeside Light Purple */
|
/* Atelier Lakeside Light Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #5d5db1;
|
color: #5d5db1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #ebf8ff;
|
background: #ebf8ff;
|
||||||
color: #516d7b;
|
color: #516d7b;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+93
-93
@@ -1,93 +1,93 @@
|
|||||||
/* Base16 Atelier Seaside Dark - Theme */
|
/* Base16 Atelier Seaside Dark - Theme */
|
||||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */
|
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */
|
||||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||||
|
|
||||||
/* Atelier Seaside Dark Comment */
|
/* Atelier Seaside Dark Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #809980;
|
color: #809980;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Seaside Dark Red */
|
/* Atelier Seaside Dark Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #e6193c;
|
color: #e6193c;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Seaside Dark Orange */
|
/* Atelier Seaside Dark Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #87711d;
|
color: #87711d;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Seaside Dark Yellow */
|
/* Atelier Seaside Dark Yellow */
|
||||||
.hljs-ruby .hljs-class .hljs-title,
|
.hljs-ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #c3c322;
|
color: #c3c322;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Seaside Dark Green */
|
/* Atelier Seaside Dark Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #29a329;
|
color: #29a329;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Seaside Dark Aqua */
|
/* Atelier Seaside Dark Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #1999b3;
|
color: #1999b3;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Seaside Dark Blue */
|
/* Atelier Seaside Dark Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #3d62f5;
|
color: #3d62f5;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Seaside Dark Purple */
|
/* Atelier Seaside Dark Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #ad2bee;
|
color: #ad2bee;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #242924;
|
background: #242924;
|
||||||
color: #8ca68c;
|
color: #8ca68c;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+93
-93
@@ -1,93 +1,93 @@
|
|||||||
/* Base16 Atelier Seaside Light - Theme */
|
/* Base16 Atelier Seaside Light - Theme */
|
||||||
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */
|
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */
|
||||||
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
|
||||||
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
/* https://github.com/jmblog/color-themes-for-highlightjs */
|
||||||
|
|
||||||
/* Atelier Seaside Light Comment */
|
/* Atelier Seaside Light Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #687d68;
|
color: #687d68;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Seaside Light Red */
|
/* Atelier Seaside Light Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #e6193c;
|
color: #e6193c;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Seaside Light Orange */
|
/* Atelier Seaside Light Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #87711d;
|
color: #87711d;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Seaside Light Yellow */
|
/* Atelier Seaside Light Yellow */
|
||||||
.hljs-ruby .hljs-class .hljs-title,
|
.hljs-ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #c3c322;
|
color: #c3c322;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Seaside Light Green */
|
/* Atelier Seaside Light Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #29a329;
|
color: #29a329;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Seaside Light Aqua */
|
/* Atelier Seaside Light Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #1999b3;
|
color: #1999b3;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Seaside Light Blue */
|
/* Atelier Seaside Light Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #3d62f5;
|
color: #3d62f5;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Atelier Seaside Light Purple */
|
/* Atelier Seaside Light Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #ad2bee;
|
color: #ad2bee;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #f0fff0;
|
background: #f0fff0;
|
||||||
color: #5e6e5e;
|
color: #5e6e5e;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+105
-105
@@ -1,105 +1,105 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Brown Paper style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>
|
Brown Paper style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background:#b7a68e url(./brown_papersq.png);
|
background:#b7a68e url(./brown_papersq.png);
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-change,
|
.hljs-change,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.hljs-flow,
|
.hljs-flow,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.clojure .hljs-built_in,
|
.clojure .hljs-built_in,
|
||||||
.nginx .hljs-title,
|
.nginx .hljs-title,
|
||||||
.tex .hljs-special,
|
.tex .hljs-special,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status {
|
.hljs-status {
|
||||||
color:#005599;
|
color:#005599;
|
||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs,
|
.hljs,
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.hljs-tag .hljs-keyword {
|
.hljs-tag .hljs-keyword {
|
||||||
color: #363C69;
|
color: #363C69;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.css .hljs-rules .hljs-value,
|
.css .hljs-rules .hljs-value,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.ruby .hljs-class .hljs-parent,
|
.ruby .hljs-class .hljs-parent,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.django .hljs-template_tag,
|
.django .hljs-template_tag,
|
||||||
.django .hljs-variable,
|
.django .hljs-variable,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.ruby .hljs-string,
|
.ruby .hljs-string,
|
||||||
.django .hljs-filter .hljs-argument,
|
.django .hljs-filter .hljs-argument,
|
||||||
.smalltalk .hljs-localvars,
|
.smalltalk .hljs-localvars,
|
||||||
.smalltalk .hljs-array,
|
.smalltalk .hljs-array,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.hljs-stream,
|
.hljs-stream,
|
||||||
.hljs-envvar,
|
.hljs-envvar,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.tex .hljs-number {
|
.tex .hljs-number {
|
||||||
color: #2C009F;
|
color: #2C009F;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.java .hljs-annotation,
|
.java .hljs-annotation,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.apache .hljs-sqbracket,
|
.apache .hljs-sqbracket,
|
||||||
.nginx .hljs-built_in,
|
.nginx .hljs-built_in,
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
color: #802022;
|
color: #802022;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.vbscript .hljs-built_in,
|
.vbscript .hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.rsl .hljs-built_in,
|
.rsl .hljs-built_in,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.bash .hljs-variable,
|
.bash .hljs-variable,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.tex .hljs-command {
|
.tex .hljs-command {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|||||||
+105
-105
@@ -1,105 +1,105 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Dark style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
|
Dark style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: #444;
|
background: #444;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-change,
|
.hljs-change,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.hljs-flow,
|
.hljs-flow,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.clojure .hljs-built_in,
|
.clojure .hljs-built_in,
|
||||||
.nginx .hljs-title,
|
.nginx .hljs-title,
|
||||||
.tex .hljs-special {
|
.tex .hljs-special {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs,
|
.hljs,
|
||||||
.hljs-subst {
|
.hljs-subst {
|
||||||
color: #DDD;
|
color: #DDD;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.ini .hljs-title,
|
.ini .hljs-title,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.css .hljs-rules .hljs-value,
|
.css .hljs-rules .hljs-value,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.ruby .hljs-class .hljs-parent,
|
.ruby .hljs-class .hljs-parent,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.django .hljs-template_tag,
|
.django .hljs-template_tag,
|
||||||
.django .hljs-variable,
|
.django .hljs-variable,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.ruby .hljs-string,
|
.ruby .hljs-string,
|
||||||
.django .hljs-filter .hljs-argument,
|
.django .hljs-filter .hljs-argument,
|
||||||
.smalltalk .hljs-localvars,
|
.smalltalk .hljs-localvars,
|
||||||
.smalltalk .hljs-array,
|
.smalltalk .hljs-array,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.hljs-stream,
|
.hljs-stream,
|
||||||
.hljs-envvar,
|
.hljs-envvar,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.hljs-prompt,
|
.hljs-prompt,
|
||||||
.coffeescript .hljs-attribute {
|
.coffeescript .hljs-attribute {
|
||||||
color: #D88;
|
color: #D88;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.java .hljs-annotation,
|
.java .hljs-annotation,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.apache .hljs-sqbracket,
|
.apache .hljs-sqbracket,
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
color: #777;
|
color: #777;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.vbscript .hljs-built_in,
|
.vbscript .hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.rsl .hljs-built_in,
|
.rsl .hljs-built_in,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.bash .hljs-variable,
|
.bash .hljs-variable,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.tex .hljs-special,
|
.tex .hljs-special,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status {
|
.hljs-status {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+153
-153
@@ -1,153 +1,153 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
|
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: #F0F0F0;
|
background: #F0F0F0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs,
|
.hljs,
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.hljs-tag .hljs-title,
|
.hljs-tag .hljs-title,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.clojure .hljs-built_in,
|
.clojure .hljs-built_in,
|
||||||
.nginx .hljs-title {
|
.nginx .hljs-title {
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-constant,
|
.hljs-constant,
|
||||||
.hljs-parent,
|
.hljs-parent,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-rules .hljs-value,
|
.hljs-rules .hljs-value,
|
||||||
.hljs-rules .hljs-value .hljs-number,
|
.hljs-rules .hljs-value .hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.haml .hljs-symbol,
|
.haml .hljs-symbol,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.hljs-aggregate,
|
.hljs-aggregate,
|
||||||
.hljs-template_tag,
|
.hljs-template_tag,
|
||||||
.django .hljs-variable,
|
.django .hljs-variable,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.hljs-flow,
|
.hljs-flow,
|
||||||
.hljs-stream,
|
.hljs-stream,
|
||||||
.bash .hljs-variable,
|
.bash .hljs-variable,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.tex .hljs-special,
|
.tex .hljs-special,
|
||||||
.erlang_repl .hljs-function_or_atom,
|
.erlang_repl .hljs-function_or_atom,
|
||||||
.asciidoc .hljs-header,
|
.asciidoc .hljs-header,
|
||||||
.markdown .hljs-header,
|
.markdown .hljs-header,
|
||||||
.coffeescript .hljs-attribute {
|
.coffeescript .hljs-attribute {
|
||||||
color: #800;
|
color: #800;
|
||||||
}
|
}
|
||||||
|
|
||||||
.smartquote,
|
.smartquote,
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-annotation,
|
.hljs-annotation,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.asciidoc .hljs-blockquote,
|
.asciidoc .hljs-blockquote,
|
||||||
.markdown .hljs-blockquote {
|
.markdown .hljs-blockquote {
|
||||||
color: #888;
|
color: #888;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-date,
|
.hljs-date,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-hexcolor,
|
.hljs-hexcolor,
|
||||||
.smalltalk .hljs-symbol,
|
.smalltalk .hljs-symbol,
|
||||||
.smalltalk .hljs-char,
|
.smalltalk .hljs-char,
|
||||||
.go .hljs-constant,
|
.go .hljs-constant,
|
||||||
.hljs-change,
|
.hljs-change,
|
||||||
.lasso .hljs-variable,
|
.lasso .hljs-variable,
|
||||||
.makefile .hljs-variable,
|
.makefile .hljs-variable,
|
||||||
.asciidoc .hljs-bullet,
|
.asciidoc .hljs-bullet,
|
||||||
.markdown .hljs-bullet,
|
.markdown .hljs-bullet,
|
||||||
.asciidoc .hljs-link_url,
|
.asciidoc .hljs-link_url,
|
||||||
.markdown .hljs-link_url {
|
.markdown .hljs-link_url {
|
||||||
color: #080;
|
color: #080;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-label,
|
.hljs-label,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.ruby .hljs-string,
|
.ruby .hljs-string,
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.hljs-filter .hljs-argument,
|
.hljs-filter .hljs-argument,
|
||||||
.hljs-localvars,
|
.hljs-localvars,
|
||||||
.hljs-array,
|
.hljs-array,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-important,
|
.hljs-important,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.haml .hljs-bullet,
|
.haml .hljs-bullet,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.hljs-envvar,
|
.hljs-envvar,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.apache .hljs-sqbracket,
|
.apache .hljs-sqbracket,
|
||||||
.nginx .hljs-built_in,
|
.nginx .hljs-built_in,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.erlang_repl .hljs-reserved,
|
.erlang_repl .hljs-reserved,
|
||||||
.hljs-prompt,
|
.hljs-prompt,
|
||||||
.asciidoc .hljs-link_label,
|
.asciidoc .hljs-link_label,
|
||||||
.markdown .hljs-link_label,
|
.markdown .hljs-link_label,
|
||||||
.vhdl .hljs-attribute,
|
.vhdl .hljs-attribute,
|
||||||
.clojure .hljs-attribute,
|
.clojure .hljs-attribute,
|
||||||
.asciidoc .hljs-attribute,
|
.asciidoc .hljs-attribute,
|
||||||
.lasso .hljs-attribute,
|
.lasso .hljs-attribute,
|
||||||
.coffeescript .hljs-property,
|
.coffeescript .hljs-property,
|
||||||
.hljs-phony {
|
.hljs-phony {
|
||||||
color: #88F
|
color: #88F
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-id,
|
.hljs-id,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-aggregate,
|
.hljs-aggregate,
|
||||||
.css .hljs-tag,
|
.css .hljs-tag,
|
||||||
.hljs-javadoctag,
|
.hljs-javadoctag,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.hljs-yardoctag,
|
.hljs-yardoctag,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.bash .hljs-variable,
|
.bash .hljs-variable,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.go .hljs-typename,
|
.go .hljs-typename,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.asciidoc .hljs-strong,
|
.asciidoc .hljs-strong,
|
||||||
.markdown .hljs-strong,
|
.markdown .hljs-strong,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status {
|
.hljs-status {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.asciidoc .hljs-emphasis,
|
.asciidoc .hljs-emphasis,
|
||||||
.markdown .hljs-emphasis {
|
.markdown .hljs-emphasis {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nginx .hljs-built_in {
|
.nginx .hljs-built_in {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.lasso .markup,
|
.lasso .markup,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+132
-132
@@ -1,132 +1,132 @@
|
|||||||
/*
|
/*
|
||||||
Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars)
|
Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
color: #000;
|
color: #000;
|
||||||
background: #f8f8ff
|
background: #f8f8ff
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-javadoc {
|
.hljs-javadoc {
|
||||||
color: #408080;
|
color: #408080;
|
||||||
font-style: italic
|
font-style: italic
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.assignment,
|
.assignment,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.css .rule .hljs-keyword,
|
.css .rule .hljs-keyword,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.hljs-subst {
|
.hljs-subst {
|
||||||
color: #954121;
|
color: #954121;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-hexcolor {
|
.hljs-hexcolor {
|
||||||
color: #40a070
|
color: #40a070
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
color: #219161;
|
color: #219161;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-id {
|
.hljs-id {
|
||||||
color: #19469D;
|
color: #19469D;
|
||||||
}
|
}
|
||||||
.hljs-params {
|
.hljs-params {
|
||||||
color: #00F;
|
color: #00F;
|
||||||
}
|
}
|
||||||
|
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.hljs-subst {
|
.hljs-subst {
|
||||||
font-weight: normal
|
font-weight: normal
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-class .hljs-title,
|
.hljs-class .hljs-title,
|
||||||
.haskell .hljs-label,
|
.haskell .hljs-label,
|
||||||
.tex .hljs-command {
|
.tex .hljs-command {
|
||||||
color: #458;
|
color: #458;
|
||||||
font-weight: bold
|
font-weight: bold
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-tag .hljs-title,
|
.hljs-tag .hljs-title,
|
||||||
.hljs-rules .hljs-property,
|
.hljs-rules .hljs-property,
|
||||||
.django .hljs-tag .hljs-keyword {
|
.django .hljs-tag .hljs-keyword {
|
||||||
color: #000080;
|
color: #000080;
|
||||||
font-weight: normal
|
font-weight: normal
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.instancevar,
|
.instancevar,
|
||||||
.lisp .hljs-body {
|
.lisp .hljs-body {
|
||||||
color: #008080
|
color: #008080
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-regexp {
|
.hljs-regexp {
|
||||||
color: #B68
|
color: #B68
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-class {
|
.hljs-class {
|
||||||
color: #458;
|
color: #458;
|
||||||
font-weight: bold
|
font-weight: bold
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.ruby .hljs-symbol .hljs-keyword,
|
.ruby .hljs-symbol .hljs-keyword,
|
||||||
.ruby .hljs-symbol .keymethods,
|
.ruby .hljs-symbol .keymethods,
|
||||||
.lisp .hljs-keyword,
|
.lisp .hljs-keyword,
|
||||||
.tex .hljs-special,
|
.tex .hljs-special,
|
||||||
.input_number {
|
.input_number {
|
||||||
color: #990073
|
color: #990073
|
||||||
}
|
}
|
||||||
|
|
||||||
.builtin,
|
.builtin,
|
||||||
.constructor,
|
.constructor,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.lisp .hljs-title {
|
.lisp .hljs-title {
|
||||||
color: #0086b3
|
color: #0086b3
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.hljs-cdata {
|
.hljs-cdata {
|
||||||
color: #999;
|
color: #999;
|
||||||
font-weight: bold
|
font-weight: bold
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-deletion {
|
.hljs-deletion {
|
||||||
background: #fdd
|
background: #fdd
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-addition {
|
.hljs-addition {
|
||||||
background: #dfd
|
background: #dfd
|
||||||
}
|
}
|
||||||
|
|
||||||
.diff .hljs-change {
|
.diff .hljs-change {
|
||||||
background: #0086b3
|
background: #0086b3
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-chunk {
|
.hljs-chunk {
|
||||||
color: #aaa
|
color: #aaa
|
||||||
}
|
}
|
||||||
|
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+113
-113
@@ -1,113 +1,113 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
FAR Style (c) MajestiC <majestic2k@gmail.com>
|
FAR Style (c) MajestiC <majestic2k@gmail.com>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: #000080;
|
background: #000080;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs,
|
.hljs,
|
||||||
.hljs-subst {
|
.hljs-subst {
|
||||||
color: #0FF;
|
color: #0FF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.ruby .hljs-string,
|
.ruby .hljs-string,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.css .hljs-rules .hljs-value,
|
.css .hljs-rules .hljs-value,
|
||||||
.css .hljs-rules .hljs-value .hljs-number,
|
.css .hljs-rules .hljs-value .hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.django .hljs-template_tag,
|
.django .hljs-template_tag,
|
||||||
.django .hljs-variable,
|
.django .hljs-variable,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.clojure .hljs-title,
|
.clojure .hljs-title,
|
||||||
.coffeescript .hljs-attribute {
|
.coffeescript .hljs-attribute {
|
||||||
color: #FF0;
|
color: #FF0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.vbscript .hljs-built_in,
|
.vbscript .hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.rsl .hljs-built_in,
|
.rsl .hljs-built_in,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.hljs-flow,
|
.hljs-flow,
|
||||||
.hljs-change,
|
.hljs-change,
|
||||||
.hljs-envvar,
|
.hljs-envvar,
|
||||||
.bash .hljs-variable,
|
.bash .hljs-variable,
|
||||||
.tex .hljs-special,
|
.tex .hljs-special,
|
||||||
.clojure .hljs-built_in {
|
.clojure .hljs-built_in {
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.java .hljs-annotation,
|
.java .hljs-annotation,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.apache .hljs-sqbracket,
|
.apache .hljs-sqbracket,
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
color: #888;
|
color: #888;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-date,
|
.hljs-date,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.smalltalk .hljs-symbol,
|
.smalltalk .hljs-symbol,
|
||||||
.smalltalk .hljs-char,
|
.smalltalk .hljs-char,
|
||||||
.clojure .hljs-attribute {
|
.clojure .hljs-attribute {
|
||||||
color: #0F0;
|
color: #0F0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.django .hljs-filter .hljs-argument,
|
.django .hljs-filter .hljs-argument,
|
||||||
.smalltalk .hljs-localvars,
|
.smalltalk .hljs-localvars,
|
||||||
.smalltalk .hljs-array,
|
.smalltalk .hljs-array,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.nginx .hljs-built_in,
|
.nginx .hljs-built_in,
|
||||||
.hljs-prompt {
|
.hljs-prompt {
|
||||||
color: #008080;
|
color: #008080;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.vbscript .hljs-built_in,
|
.vbscript .hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.rsl .hljs-built_in,
|
.rsl .hljs-built_in,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.hljs-flow,
|
.hljs-flow,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.nginx .hljs-built_in,
|
.nginx .hljs-built_in,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.tex .hljs-special,
|
.tex .hljs-special,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status {
|
.hljs-status {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|||||||
Vendored
+133
-133
@@ -1,133 +1,133 @@
|
|||||||
/*
|
/*
|
||||||
Description: Foundation 4 docs style for highlight.js
|
Description: Foundation 4 docs style for highlight.js
|
||||||
Author: Dan Allen <dan.j.allen@gmail.com>
|
Author: Dan Allen <dan.j.allen@gmail.com>
|
||||||
Website: http://foundation.zurb.com/docs/
|
Website: http://foundation.zurb.com/docs/
|
||||||
Version: 1.0
|
Version: 1.0
|
||||||
Date: 2013-04-02
|
Date: 2013-04-02
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: #eee;
|
background: #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.hljs-annotation {
|
.hljs-annotation {
|
||||||
color: #000077;
|
color: #000077;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-horizontal_rule,
|
.hljs-horizontal_rule,
|
||||||
.hljs-link_url,
|
.hljs-link_url,
|
||||||
.hljs-emphasis,
|
.hljs-emphasis,
|
||||||
.hljs-attribute {
|
.hljs-attribute {
|
||||||
color: #070;
|
color: #070;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-emphasis {
|
.hljs-emphasis {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-link_label,
|
.hljs-link_label,
|
||||||
.hljs-strong,
|
.hljs-strong,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.scss .hljs-value .hljs-string {
|
.scss .hljs-value .hljs-string {
|
||||||
color: #d14;
|
color: #d14;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-strong {
|
.hljs-strong {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-blockquote,
|
.hljs-blockquote,
|
||||||
.hljs-comment {
|
.hljs-comment {
|
||||||
color: #998;
|
color: #998;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.asciidoc .hljs-title,
|
.asciidoc .hljs-title,
|
||||||
.hljs-function .hljs-title {
|
.hljs-function .hljs-title {
|
||||||
color: #900;
|
color: #900;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-class {
|
.hljs-class {
|
||||||
color: #458;
|
color: #458;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-id,
|
.hljs-id,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.hljs-constant,
|
.hljs-constant,
|
||||||
.hljs-hexcolor {
|
.hljs-hexcolor {
|
||||||
color: teal;
|
color: teal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-variable {
|
.hljs-variable {
|
||||||
color: #336699;
|
color: #336699;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-bullet,
|
.hljs-bullet,
|
||||||
.hljs-javadoc {
|
.hljs-javadoc {
|
||||||
color: #997700;
|
color: #997700;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-doctype {
|
.hljs-doctype {
|
||||||
color: #3344bb;
|
color: #3344bb;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-code,
|
.hljs-code,
|
||||||
.hljs-number {
|
.hljs-number {
|
||||||
color: #099;
|
color: #099;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-important {
|
.hljs-important {
|
||||||
color: #f00;
|
color: #f00;
|
||||||
}
|
}
|
||||||
|
|
||||||
.smartquote,
|
.smartquote,
|
||||||
.hljs-label {
|
.hljs-label {
|
||||||
color: #970;
|
color: #970;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma {
|
.hljs-pragma {
|
||||||
color: #579;
|
color: #579;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-reserved,
|
.hljs-reserved,
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.scss .hljs-value {
|
.scss .hljs-value {
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-regexp {
|
.hljs-regexp {
|
||||||
background-color: #fff0ff;
|
background-color: #fff0ff;
|
||||||
color: #880088;
|
color: #880088;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-symbol {
|
.hljs-symbol {
|
||||||
color: #990073;
|
color: #990073;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-symbol .hljs-string {
|
.hljs-symbol .hljs-string {
|
||||||
color: #a60;
|
color: #a60;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-tag {
|
.hljs-tag {
|
||||||
color: #007700;
|
color: #007700;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-at_rule,
|
.hljs-at_rule,
|
||||||
.hljs-at_rule .hljs-keyword {
|
.hljs-at_rule .hljs-keyword {
|
||||||
color: #088;
|
color: #088;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-at_rule .hljs-preprocessor {
|
.hljs-at_rule .hljs-preprocessor {
|
||||||
color: #808;
|
color: #808;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scss .hljs-tag,
|
.scss .hljs-tag,
|
||||||
.scss .hljs-attribute {
|
.scss .hljs-attribute {
|
||||||
color: #339;
|
color: #339;
|
||||||
}
|
}
|
||||||
|
|||||||
+125
-125
@@ -1,125 +1,125 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
github.com style (c) Vasily Polovnyov <vast@whiteants.net>
|
github.com style (c) Vasily Polovnyov <vast@whiteants.net>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
color: #333;
|
color: #333;
|
||||||
background: #f8f8f8
|
background: #f8f8f8
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-javadoc {
|
.hljs-javadoc {
|
||||||
color: #998;
|
color: #998;
|
||||||
font-style: italic
|
font-style: italic
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.css .rule .hljs-keyword,
|
.css .rule .hljs-keyword,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.nginx .hljs-title,
|
.nginx .hljs-title,
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status {
|
.hljs-status {
|
||||||
color: #333;
|
color: #333;
|
||||||
font-weight: bold
|
font-weight: bold
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-hexcolor,
|
.hljs-hexcolor,
|
||||||
.ruby .hljs-constant {
|
.ruby .hljs-constant {
|
||||||
color: #099;
|
color: #099;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
color: #d14
|
color: #d14
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-id,
|
.hljs-id,
|
||||||
.coffeescript .hljs-params,
|
.coffeescript .hljs-params,
|
||||||
.scss .hljs-preprocessor {
|
.scss .hljs-preprocessor {
|
||||||
color: #900;
|
color: #900;
|
||||||
font-weight: bold
|
font-weight: bold
|
||||||
}
|
}
|
||||||
|
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.clojure .hljs-title,
|
.clojure .hljs-title,
|
||||||
.hljs-subst {
|
.hljs-subst {
|
||||||
font-weight: normal
|
font-weight: normal
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-class .hljs-title,
|
.hljs-class .hljs-title,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.vhdl .hljs-literal,
|
.vhdl .hljs-literal,
|
||||||
.tex .hljs-command {
|
.tex .hljs-command {
|
||||||
color: #458;
|
color: #458;
|
||||||
font-weight: bold
|
font-weight: bold
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-tag .hljs-title,
|
.hljs-tag .hljs-title,
|
||||||
.hljs-rules .hljs-property,
|
.hljs-rules .hljs-property,
|
||||||
.django .hljs-tag .hljs-keyword {
|
.django .hljs-tag .hljs-keyword {
|
||||||
color: #000080;
|
color: #000080;
|
||||||
font-weight: normal
|
font-weight: normal
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.lisp .hljs-body {
|
.lisp .hljs-body {
|
||||||
color: #008080
|
color: #008080
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-regexp {
|
.hljs-regexp {
|
||||||
color: #009926
|
color: #009926
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.lisp .hljs-keyword,
|
.lisp .hljs-keyword,
|
||||||
.tex .hljs-special,
|
.tex .hljs-special,
|
||||||
.hljs-prompt {
|
.hljs-prompt {
|
||||||
color: #990073
|
color: #990073
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.clojure .hljs-built_in {
|
.clojure .hljs-built_in {
|
||||||
color: #0086b3
|
color: #0086b3
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.hljs-cdata {
|
.hljs-cdata {
|
||||||
color: #999;
|
color: #999;
|
||||||
font-weight: bold
|
font-weight: bold
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-deletion {
|
.hljs-deletion {
|
||||||
background: #fdd
|
background: #fdd
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-addition {
|
.hljs-addition {
|
||||||
background: #dfd
|
background: #dfd
|
||||||
}
|
}
|
||||||
|
|
||||||
.diff .hljs-change {
|
.diff .hljs-change {
|
||||||
background: #0086b3
|
background: #0086b3
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-chunk {
|
.hljs-chunk {
|
||||||
color: #aaa
|
color: #aaa
|
||||||
}
|
}
|
||||||
|
|||||||
+147
-147
@@ -1,147 +1,147 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Google Code style (c) Aahan Krish <geekpanth3r@gmail.com>
|
Google Code style (c) Aahan Krish <geekpanth3r@gmail.com>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: white; color: black;
|
background: white; color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.hljs-comment * {
|
.hljs-comment * {
|
||||||
color: #800;
|
color: #800;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.method,
|
.method,
|
||||||
.hljs-list .hljs-title,
|
.hljs-list .hljs-title,
|
||||||
.clojure .hljs-built_in,
|
.clojure .hljs-built_in,
|
||||||
.nginx .hljs-title,
|
.nginx .hljs-title,
|
||||||
.hljs-tag .hljs-title,
|
.hljs-tag .hljs-title,
|
||||||
.setting .hljs-value,
|
.setting .hljs-value,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.http .hljs-title,
|
.http .hljs-title,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status {
|
.hljs-status {
|
||||||
color: #008;
|
color: #008;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-envvar,
|
.hljs-envvar,
|
||||||
.tex .hljs-special {
|
.tex .hljs-special {
|
||||||
color: #660;
|
color: #660;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-cdata,
|
.hljs-cdata,
|
||||||
.hljs-filter .hljs-argument,
|
.hljs-filter .hljs-argument,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.hljs-date,
|
.hljs-date,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.coffeescript .hljs-attribute {
|
.coffeescript .hljs-attribute {
|
||||||
color: #080;
|
color: #080;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-sub .hljs-identifier,
|
.hljs-sub .hljs-identifier,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-tag .hljs-keyword,
|
.hljs-tag .hljs-keyword,
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.ini .hljs-title,
|
.ini .hljs-title,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.hljs-prompt,
|
.hljs-prompt,
|
||||||
.hljs-hexcolor,
|
.hljs-hexcolor,
|
||||||
.hljs-rules .hljs-value,
|
.hljs-rules .hljs-value,
|
||||||
.css .hljs-value .hljs-number,
|
.css .hljs-value .hljs-number,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.css .hljs-function,
|
.css .hljs-function,
|
||||||
.clojure .hljs-attribute {
|
.clojure .hljs-attribute {
|
||||||
color: #066;
|
color: #066;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-class .hljs-title,
|
.hljs-class .hljs-title,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-javadoctag,
|
.hljs-javadoctag,
|
||||||
.hljs-yardoctag,
|
.hljs-yardoctag,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.hljs-typename,
|
.hljs-typename,
|
||||||
.hljs-tag .hljs-attribute,
|
.hljs-tag .hljs-attribute,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-class .hljs-id,
|
.hljs-class .hljs-id,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.setting,
|
.setting,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.clojure .hljs-title {
|
.clojure .hljs-title {
|
||||||
color: #606;
|
color: #606;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-tag,
|
.css .hljs-tag,
|
||||||
.hljs-rules .hljs-property,
|
.hljs-rules .hljs-property,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.hljs-subst {
|
.hljs-subst {
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-id {
|
.css .hljs-id {
|
||||||
color: #9B703F;
|
color: #9B703F;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-value .hljs-important {
|
.hljs-value .hljs-important {
|
||||||
color: #ff7700;
|
color: #ff7700;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-rules .hljs-keyword {
|
.hljs-rules .hljs-keyword {
|
||||||
color: #C5AF75;
|
color: #C5AF75;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-annotation,
|
.hljs-annotation,
|
||||||
.apache .hljs-sqbracket,
|
.apache .hljs-sqbracket,
|
||||||
.nginx .hljs-built_in {
|
.nginx .hljs-built_in {
|
||||||
color: #9B859D;
|
color: #9B859D;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-preprocessor *,
|
.hljs-preprocessor *,
|
||||||
.hljs-pragma {
|
.hljs-pragma {
|
||||||
color: #444;
|
color: #444;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
background-color: #EEE;
|
background-color: #EEE;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-chunk {
|
.hljs-chunk {
|
||||||
color: #808080;
|
color: #808080;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.diff .hljs-change {
|
.diff .hljs-change {
|
||||||
background-color: #BCCFF9;
|
background-color: #BCCFF9;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-addition {
|
.hljs-addition {
|
||||||
background-color: #BAEEBA;
|
background-color: #BAEEBA;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-deletion {
|
.hljs-deletion {
|
||||||
background-color: #FFC8BD;
|
background-color: #FFC8BD;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment .hljs-yardoctag {
|
.hljs-comment .hljs-yardoctag {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|||||||
+122
-122
@@ -1,122 +1,122 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
|
Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
color: #000;
|
color: #000;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.diff .hljs-header {
|
.diff .hljs-header {
|
||||||
color: #808080;
|
color: #808080;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-annotation,
|
.hljs-annotation,
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.hljs-prompt,
|
.hljs-prompt,
|
||||||
.http .hljs-title {
|
.http .hljs-title {
|
||||||
color: #808000;
|
color: #808000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-pi {
|
.hljs-pi {
|
||||||
background: #efefef;
|
background: #efefef;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-tag .hljs-title,
|
.hljs-tag .hljs-title,
|
||||||
.hljs-id,
|
.hljs-id,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-hexcolor,
|
.hljs-hexcolor,
|
||||||
.css .hljs-function,
|
.css .hljs-function,
|
||||||
.ini .hljs-title,
|
.ini .hljs-title,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.hljs-list .hljs-title,
|
.hljs-list .hljs-title,
|
||||||
.clojure .hljs-title,
|
.clojure .hljs-title,
|
||||||
.nginx .hljs-title,
|
.nginx .hljs-title,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status {
|
.hljs-status {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #000080;
|
color: #000080;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-rules .hljs-keyword,
|
.hljs-rules .hljs-keyword,
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-date,
|
.hljs-date,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.tex .hljs-special {
|
.tex .hljs-special {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #0000ff;
|
color: #0000ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-regexp {
|
.hljs-regexp {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-filter .hljs-argument,
|
.hljs-filter .hljs-argument,
|
||||||
.css .hljs-function .hljs-params,
|
.css .hljs-function .hljs-params,
|
||||||
.apache .hljs-tag {
|
.apache .hljs-tag {
|
||||||
color: #008000;
|
color: #008000;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.hljs-char,
|
.hljs-char,
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
color: #000;
|
color: #000;
|
||||||
background: #d0eded;
|
background: #d0eded;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.hljs-yardoctag,
|
.hljs-yardoctag,
|
||||||
.hljs-javadoctag {
|
.hljs-javadoctag {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-envvar,
|
.hljs-envvar,
|
||||||
.apache .hljs-sqbracket,
|
.apache .hljs-sqbracket,
|
||||||
.nginx .hljs-built_in {
|
.nginx .hljs-built_in {
|
||||||
color: #660e7a;
|
color: #660e7a;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-addition {
|
.hljs-addition {
|
||||||
background: #baeeba;
|
background: #baeeba;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-deletion {
|
.hljs-deletion {
|
||||||
background: #ffc8bd;
|
background: #ffc8bd;
|
||||||
}
|
}
|
||||||
|
|
||||||
.diff .hljs-change {
|
.diff .hljs-change {
|
||||||
background: #bccff9;
|
background: #bccff9;
|
||||||
}
|
}
|
||||||
|
|||||||
+105
-105
@@ -1,105 +1,105 @@
|
|||||||
/*
|
/*
|
||||||
IR_Black style (c) Vasily Mikhailitchenko <vaskas@programica.ru>
|
IR_Black style (c) Vasily Mikhailitchenko <vaskas@programica.ru>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: #000; color: #f8f8f8;
|
background: #000; color: #f8f8f8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-javadoc {
|
.hljs-javadoc {
|
||||||
color: #7c7c7c;
|
color: #7c7c7c;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status,
|
.hljs-status,
|
||||||
.clojure .hljs-attribute {
|
.clojure .hljs-attribute {
|
||||||
color: #96CBFE;
|
color: #96CBFE;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-sub .hljs-keyword,
|
.hljs-sub .hljs-keyword,
|
||||||
.method,
|
.method,
|
||||||
.hljs-list .hljs-title,
|
.hljs-list .hljs-title,
|
||||||
.nginx .hljs-title {
|
.nginx .hljs-title {
|
||||||
color: #FFFFB6;
|
color: #FFFFB6;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-cdata,
|
.hljs-cdata,
|
||||||
.hljs-filter .hljs-argument,
|
.hljs-filter .hljs-argument,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.hljs-date,
|
.hljs-date,
|
||||||
.coffeescript .hljs-attribute {
|
.coffeescript .hljs-attribute {
|
||||||
color: #A8FF60;
|
color: #A8FF60;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-subst {
|
.hljs-subst {
|
||||||
color: #DAEFA3;
|
color: #DAEFA3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-regexp {
|
.hljs-regexp {
|
||||||
color: #E9C062;
|
color: #E9C062;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-sub .hljs-identifier,
|
.hljs-sub .hljs-identifier,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.tex .hljs-special,
|
.tex .hljs-special,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.hljs-constant,
|
.hljs-constant,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-javadoctag,
|
.hljs-javadoctag,
|
||||||
.hljs-yardoctag,
|
.hljs-yardoctag,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.nginx .hljs-built_in {
|
.nginx .hljs-built_in {
|
||||||
color: #FFFFB6;
|
color: #FFFFB6;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.vbscript,
|
.vbscript,
|
||||||
.hljs-literal {
|
.hljs-literal {
|
||||||
color: #C6C5FE;
|
color: #C6C5FE;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-tag {
|
.css .hljs-tag {
|
||||||
color: #96CBFE;
|
color: #96CBFE;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-rules .hljs-property,
|
.css .hljs-rules .hljs-property,
|
||||||
.css .hljs-id {
|
.css .hljs-id {
|
||||||
color: #FFFFB6;
|
color: #FFFFB6;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-class {
|
.css .hljs-class {
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-hexcolor {
|
.hljs-hexcolor {
|
||||||
color: #C6C5FE;
|
color: #C6C5FE;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-number {
|
.hljs-number {
|
||||||
color:#FF73FD;
|
color:#FF73FD;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
}
|
}
|
||||||
|
|||||||
+122
-122
@@ -1,122 +1,122 @@
|
|||||||
/*
|
/*
|
||||||
Description: Magula style for highligh.js
|
Description: Magula style for highligh.js
|
||||||
Author: Ruslan Keba <rukeba@gmail.com>
|
Author: Ruslan Keba <rukeba@gmail.com>
|
||||||
Website: http://rukeba.com/
|
Website: http://rukeba.com/
|
||||||
Version: 1.0
|
Version: 1.0
|
||||||
Date: 2009-01-03
|
Date: 2009-01-03
|
||||||
Music: Aphex Twin / Xtal
|
Music: Aphex Twin / Xtal
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background-color: #f4f4f4;
|
background-color: #f4f4f4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs,
|
.hljs,
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.clojure .hljs-built_in {
|
.clojure .hljs-built_in {
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-parent,
|
.hljs-parent,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-rules .hljs-value,
|
.hljs-rules .hljs-value,
|
||||||
.hljs-rules .hljs-value .hljs-number,
|
.hljs-rules .hljs-value .hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.hljs-aggregate,
|
.hljs-aggregate,
|
||||||
.hljs-template_tag,
|
.hljs-template_tag,
|
||||||
.django .hljs-variable,
|
.django .hljs-variable,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.hljs-flow,
|
.hljs-flow,
|
||||||
.hljs-stream,
|
.hljs-stream,
|
||||||
.bash .hljs-variable,
|
.bash .hljs-variable,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.coffeescript .hljs-attribute {
|
.coffeescript .hljs-attribute {
|
||||||
color: #050;
|
color: #050;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-annotation,
|
.hljs-annotation,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-chunk {
|
.hljs-chunk {
|
||||||
color: #777;
|
color: #777;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-date,
|
.hljs-date,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.smalltalk .hljs-symbol,
|
.smalltalk .hljs-symbol,
|
||||||
.smalltalk .hljs-char,
|
.smalltalk .hljs-char,
|
||||||
.hljs-change,
|
.hljs-change,
|
||||||
.tex .hljs-special {
|
.tex .hljs-special {
|
||||||
color: #800;
|
color: #800;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-label,
|
.hljs-label,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.ruby .hljs-string,
|
.ruby .hljs-string,
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.hljs-filter .hljs-argument,
|
.hljs-filter .hljs-argument,
|
||||||
.hljs-localvars,
|
.hljs-localvars,
|
||||||
.hljs-array,
|
.hljs-array,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.hljs-envvar,
|
.hljs-envvar,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.apache .hljs-sqbracket,
|
.apache .hljs-sqbracket,
|
||||||
.nginx .hljs-built_in,
|
.nginx .hljs-built_in,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.hljs-prompt,
|
.hljs-prompt,
|
||||||
.clojure .hljs-attribute {
|
.clojure .hljs-attribute {
|
||||||
color: #00e;
|
color: #00e;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-id,
|
.hljs-id,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-aggregate,
|
.hljs-aggregate,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.bash .hljs-variable,
|
.bash .hljs-variable,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.xml .hljs-tag,
|
.xml .hljs-tag,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status {
|
.hljs-status {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: navy;
|
color: navy;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nginx .hljs-built_in {
|
.nginx .hljs-built_in {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --- */
|
/* --- */
|
||||||
.apache .hljs-tag {
|
.apache .hljs-tag {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: blue;
|
color: blue;
|
||||||
}
|
}
|
||||||
|
|||||||
+62
-62
@@ -1,62 +1,62 @@
|
|||||||
/*
|
/*
|
||||||
Five-color theme from a single blue hue.
|
Five-color theme from a single blue hue.
|
||||||
*/
|
*/
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: #EAEEF3; color: #00193A;
|
background: #EAEEF3; color: #00193A;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-important,
|
.hljs-important,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.hljs-javadoctag {
|
.hljs-javadoctag {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.hljs-template_comment {
|
.hljs-template_comment {
|
||||||
color: #738191;
|
color: #738191;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-parent,
|
.hljs-parent,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-filename,
|
.hljs-filename,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-argument,
|
.hljs-argument,
|
||||||
.hljs-link_label,
|
.hljs-link_label,
|
||||||
.hljs-blockquote,
|
.hljs-blockquote,
|
||||||
.hljs-header {
|
.hljs-header {
|
||||||
color: #0048AB;
|
color: #0048AB;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.hljs-prompt,
|
.hljs-prompt,
|
||||||
.hljs-yardoctag,
|
.hljs-yardoctag,
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.hljs-xmlDocTag,
|
.hljs-xmlDocTag,
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.hljs-string .hljs-variable,
|
.hljs-string .hljs-variable,
|
||||||
.hljs-link_url,
|
.hljs-link_url,
|
||||||
.hljs-bullet,
|
.hljs-bullet,
|
||||||
.hljs-sqbracket,
|
.hljs-sqbracket,
|
||||||
.hljs-phony {
|
.hljs-phony {
|
||||||
color: #4C81C9;
|
color: #4C81C9;
|
||||||
}
|
}
|
||||||
|
|||||||
+127
-127
@@ -1,127 +1,127 @@
|
|||||||
/*
|
/*
|
||||||
Monokai style - ported by Luigi Maselli - http://grigio.org
|
Monokai style - ported by Luigi Maselli - http://grigio.org
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: #272822;
|
background: #272822;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-tag .hljs-title,
|
.hljs-tag .hljs-title,
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-strong,
|
.hljs-strong,
|
||||||
.hljs-change,
|
.hljs-change,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.hljs-flow,
|
.hljs-flow,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.clojure .hljs-built_in,
|
.clojure .hljs-built_in,
|
||||||
.nginx .hljs-title,
|
.nginx .hljs-title,
|
||||||
.tex .hljs-special {
|
.tex .hljs-special {
|
||||||
color: #F92672;
|
color: #F92672;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
color: #DDD;
|
color: #DDD;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs .hljs-constant,
|
.hljs .hljs-constant,
|
||||||
.asciidoc .hljs-code {
|
.asciidoc .hljs-code {
|
||||||
color: #66D9EF;
|
color: #66D9EF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-code,
|
.hljs-code,
|
||||||
.hljs-class .hljs-title,
|
.hljs-class .hljs-title,
|
||||||
.hljs-header {
|
.hljs-header {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-link_label,
|
.hljs-link_label,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.hljs-symbol .hljs-string,
|
.hljs-symbol .hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-regexp {
|
.hljs-regexp {
|
||||||
color: #BF79DB;
|
color: #BF79DB;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-link_url,
|
.hljs-link_url,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-bullet,
|
.hljs-bullet,
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-emphasis,
|
.hljs-emphasis,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.ruby .hljs-class .hljs-parent,
|
.ruby .hljs-class .hljs-parent,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.django .hljs-template_tag,
|
.django .hljs-template_tag,
|
||||||
.django .hljs-variable,
|
.django .hljs-variable,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.django .hljs-filter .hljs-argument,
|
.django .hljs-filter .hljs-argument,
|
||||||
.smalltalk .hljs-localvars,
|
.smalltalk .hljs-localvars,
|
||||||
.smalltalk .hljs-array,
|
.smalltalk .hljs-array,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.hljs-stream,
|
.hljs-stream,
|
||||||
.hljs-envvar,
|
.hljs-envvar,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.hljs-prompt {
|
.hljs-prompt {
|
||||||
color: #A6E22E;
|
color: #A6E22E;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.java .hljs-annotation,
|
.java .hljs-annotation,
|
||||||
.smartquote,
|
.smartquote,
|
||||||
.hljs-blockquote,
|
.hljs-blockquote,
|
||||||
.hljs-horizontal_rule,
|
.hljs-horizontal_rule,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.apache .hljs-sqbracket,
|
.apache .hljs-sqbracket,
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
color: #75715E;
|
color: #75715E;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.vbscript .hljs-built_in,
|
.vbscript .hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.rsl .hljs-built_in,
|
.rsl .hljs-built_in,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.bash .hljs-variable,
|
.bash .hljs-variable,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.tex .hljs-special,
|
.tex .hljs-special,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status {
|
.hljs-status {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+149
-149
@@ -1,149 +1,149 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
|
Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
background: #23241f;
|
background: #23241f;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs,
|
.hljs,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.css .hljs-rules,
|
.css .hljs-rules,
|
||||||
.css .hljs-value,
|
.css .hljs-value,
|
||||||
.css .hljs-function
|
.css .hljs-function
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma {
|
.hljs-pragma {
|
||||||
color: #f8f8f2;
|
color: #f8f8f2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-strongemphasis,
|
.hljs-strongemphasis,
|
||||||
.hljs-strong,
|
.hljs-strong,
|
||||||
.hljs-emphasis {
|
.hljs-emphasis {
|
||||||
color: #a8a8a2;
|
color: #a8a8a2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-bullet,
|
.hljs-bullet,
|
||||||
.hljs-blockquote,
|
.hljs-blockquote,
|
||||||
.hljs-horizontal_rule,
|
.hljs-horizontal_rule,
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.alias .hljs-keyword,
|
.alias .hljs-keyword,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-hexcolor {
|
.hljs-hexcolor {
|
||||||
color: #ae81ff;
|
color: #ae81ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-code,
|
.hljs-code,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.hljs-class .hljs-title:last-child {
|
.hljs-class .hljs-title:last-child {
|
||||||
color: #a6e22e;
|
color: #a6e22e;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-link_url {
|
.hljs-link_url {
|
||||||
font-size: 80%;
|
font-size: 80%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-strong,
|
.hljs-strong,
|
||||||
.hljs-strongemphasis {
|
.hljs-strongemphasis {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-emphasis,
|
.hljs-emphasis,
|
||||||
.hljs-strongemphasis,
|
.hljs-strongemphasis,
|
||||||
.hljs-class .hljs-title:last-child {
|
.hljs-class .hljs-title:last-child {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.hljs-change,
|
.hljs-change,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.hljs-flow,
|
.hljs-flow,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.clojure .hljs-built_in,
|
.clojure .hljs-built_in,
|
||||||
.nginx .hljs-title,
|
.nginx .hljs-title,
|
||||||
.tex .hljs-special,
|
.tex .hljs-special,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.hljs-symbol .hljs-string,
|
.hljs-symbol .hljs-string,
|
||||||
.hljs-tag .hljs-title,
|
.hljs-tag .hljs-title,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.alias .hljs-keyword:first-child,
|
.alias .hljs-keyword:first-child,
|
||||||
.css .hljs-tag,
|
.css .hljs-tag,
|
||||||
.css .unit,
|
.css .unit,
|
||||||
.css .hljs-important {
|
.css .hljs-important {
|
||||||
color: #F92672;
|
color: #F92672;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-function .hljs-keyword,
|
.hljs-function .hljs-keyword,
|
||||||
.hljs-class .hljs-keyword:first-child,
|
.hljs-class .hljs-keyword:first-child,
|
||||||
.hljs-constant,
|
.hljs-constant,
|
||||||
.css .hljs-attribute {
|
.css .hljs-attribute {
|
||||||
color: #66d9ef;
|
color: #66d9ef;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-class .hljs-title {
|
.hljs-class .hljs-title {
|
||||||
color: #f8f8f2;
|
color: #f8f8f2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.ruby .hljs-class .hljs-parent,
|
.ruby .hljs-class .hljs-parent,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.django .hljs-template_tag,
|
.django .hljs-template_tag,
|
||||||
.django .hljs-variable,
|
.django .hljs-variable,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.django .hljs-filter .hljs-argument,
|
.django .hljs-filter .hljs-argument,
|
||||||
.smalltalk .hljs-localvars,
|
.smalltalk .hljs-localvars,
|
||||||
.smalltalk .hljs-array,
|
.smalltalk .hljs-array,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.hljs-stream,
|
.hljs-stream,
|
||||||
.hljs-envvar,
|
.hljs-envvar,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.hljs-prompt,
|
.hljs-prompt,
|
||||||
.hljs-link_label,
|
.hljs-link_label,
|
||||||
.hljs-link_url {
|
.hljs-link_url {
|
||||||
color: #e6db74;
|
color: #e6db74;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.java .hljs-annotation,
|
.java .hljs-annotation,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.apache .hljs-sqbracket,
|
.apache .hljs-sqbracket,
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
color: #75715e;
|
color: #75715e;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata,
|
.xml .hljs-cdata,
|
||||||
.xml .php,
|
.xml .php,
|
||||||
.php .xml {
|
.php .xml {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+154
-154
@@ -1,154 +1,154 @@
|
|||||||
/**
|
/**
|
||||||
* Obsidian style
|
* Obsidian style
|
||||||
* ported by Alexander Marenin (http://github.com/ioncreature)
|
* ported by Alexander Marenin (http://github.com/ioncreature)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: #282B2E;
|
background: #282B2E;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-change,
|
.hljs-change,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.hljs-flow,
|
.hljs-flow,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.clojure .hljs-built_in,
|
.clojure .hljs-built_in,
|
||||||
.nginx .hljs-title,
|
.nginx .hljs-title,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.tex .hljs-special {
|
.tex .hljs-special {
|
||||||
color: #93C763;
|
color: #93C763;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-number {
|
.hljs-number {
|
||||||
color: #FFCD22;
|
color: #FFCD22;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
color: #E0E2E4;
|
color: #E0E2E4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-tag,
|
.css .hljs-tag,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #D0D2B5;
|
color: #D0D2B5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs .hljs-constant {
|
.hljs .hljs-constant {
|
||||||
color: #668BB0;
|
color: #668BB0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.xml .hljs-attribute {
|
.xml .hljs-attribute {
|
||||||
color: #B3B689;
|
color: #B3B689;
|
||||||
}
|
}
|
||||||
|
|
||||||
.xml .hljs-tag .hljs-value {
|
.xml .hljs-tag .hljs-value {
|
||||||
color: #E8E2B7;
|
color: #E8E2B7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-code,
|
.hljs-code,
|
||||||
.hljs-class .hljs-title,
|
.hljs-class .hljs-title,
|
||||||
.hljs-header {
|
.hljs-header {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-class,
|
.hljs-class,
|
||||||
.hljs-hexcolor {
|
.hljs-hexcolor {
|
||||||
color: #93C763;
|
color: #93C763;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-regexp {
|
.hljs-regexp {
|
||||||
color: #D39745;
|
color: #D39745;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-at_rule,
|
.hljs-at_rule,
|
||||||
.hljs-at_rule .hljs-keyword {
|
.hljs-at_rule .hljs-keyword {
|
||||||
color: #A082BD;
|
color: #A082BD;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-doctype {
|
.hljs-doctype {
|
||||||
color: #557182;
|
color: #557182;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-link_url,
|
.hljs-link_url,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-tag .hljs-title,
|
.hljs-tag .hljs-title,
|
||||||
.hljs-bullet,
|
.hljs-bullet,
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.hljs-emphasis,
|
.hljs-emphasis,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.ruby .hljs-class .hljs-parent,
|
.ruby .hljs-class .hljs-parent,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.django .hljs-template_tag,
|
.django .hljs-template_tag,
|
||||||
.django .hljs-variable,
|
.django .hljs-variable,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.django .hljs-filter .hljs-argument,
|
.django .hljs-filter .hljs-argument,
|
||||||
.smalltalk .hljs-localvars,
|
.smalltalk .hljs-localvars,
|
||||||
.smalltalk .hljs-array,
|
.smalltalk .hljs-array,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.hljs-stream,
|
.hljs-stream,
|
||||||
.hljs-envvar,
|
.hljs-envvar,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.hljs-prompt {
|
.hljs-prompt {
|
||||||
color: #8CBBAD;
|
color: #8CBBAD;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string {
|
.hljs-string {
|
||||||
color: #EC7600;
|
color: #EC7600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.java .hljs-annotation,
|
.java .hljs-annotation,
|
||||||
.hljs-blockquote,
|
.hljs-blockquote,
|
||||||
.hljs-horizontal_rule,
|
.hljs-horizontal_rule,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.apache .hljs-sqbracket,
|
.apache .hljs-sqbracket,
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
color: #818E96;
|
color: #818E96;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.vbscript .hljs-built_in,
|
.vbscript .hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.rsl .hljs-built_in,
|
.rsl .hljs-built_in,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.bash .hljs-variable,
|
.bash .hljs-variable,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.tex .hljs-special,
|
.tex .hljs-special,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-at_rule .hljs-keyword,
|
.hljs-at_rule .hljs-keyword,
|
||||||
.hljs-status {
|
.hljs-status {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+93
-93
@@ -1,93 +1,93 @@
|
|||||||
/*
|
/*
|
||||||
Paraíso (dark)
|
Paraíso (dark)
|
||||||
Created by Jan T. Sott (http://github.com/idleberg)
|
Created by Jan T. Sott (http://github.com/idleberg)
|
||||||
Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
|
Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Paraíso Comment */
|
/* Paraíso Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #8d8687;
|
color: #8d8687;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Paraíso Red */
|
/* Paraíso Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #ef6155;
|
color: #ef6155;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Paraíso Orange */
|
/* Paraíso Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #f99b15;
|
color: #f99b15;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Paraíso Yellow */
|
/* Paraíso Yellow */
|
||||||
.ruby .hljs-class .hljs-title,
|
.ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #fec418;
|
color: #fec418;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Paraíso Green */
|
/* Paraíso Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #48b685;
|
color: #48b685;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Paraíso Aqua */
|
/* Paraíso Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #5bc4bf;
|
color: #5bc4bf;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Paraíso Blue */
|
/* Paraíso Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #06b6ef;
|
color: #06b6ef;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Paraíso Purple */
|
/* Paraíso Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #815ba4;
|
color: #815ba4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #2f1e2e;
|
background: #2f1e2e;
|
||||||
color: #a39e9b;
|
color: #a39e9b;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+93
-93
@@ -1,93 +1,93 @@
|
|||||||
/*
|
/*
|
||||||
Paraíso (light)
|
Paraíso (light)
|
||||||
Created by Jan T. Sott (http://github.com/idleberg)
|
Created by Jan T. Sott (http://github.com/idleberg)
|
||||||
Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
|
Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Paraíso Comment */
|
/* Paraíso Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #776e71;
|
color: #776e71;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Paraíso Red */
|
/* Paraíso Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #ef6155;
|
color: #ef6155;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Paraíso Orange */
|
/* Paraíso Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #f99b15;
|
color: #f99b15;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Paraíso Yellow */
|
/* Paraíso Yellow */
|
||||||
.ruby .hljs-class .hljs-title,
|
.ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #fec418;
|
color: #fec418;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Paraíso Green */
|
/* Paraíso Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #48b685;
|
color: #48b685;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Paraíso Aqua */
|
/* Paraíso Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #5bc4bf;
|
color: #5bc4bf;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Paraíso Blue */
|
/* Paraíso Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #06b6ef;
|
color: #06b6ef;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Paraíso Purple */
|
/* Paraíso Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #815ba4;
|
color: #815ba4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #e7e9db;
|
background: #e7e9db;
|
||||||
color: #4f424c;
|
color: #4f424c;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+106
-106
@@ -1,106 +1,106 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Pojoaque Style by Jason Tate
|
Pojoaque Style by Jason Tate
|
||||||
http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
|
http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
|
||||||
Based on Solarized Style from http://ethanschoonover.com/solarized
|
Based on Solarized Style from http://ethanschoonover.com/solarized
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
color: #DCCF8F;
|
color: #DCCF8F;
|
||||||
background: url(./pojoaque.jpg) repeat scroll left top #181914;
|
background: url(./pojoaque.jpg) repeat scroll left top #181914;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.lisp .hljs-string,
|
.lisp .hljs-string,
|
||||||
.hljs-javadoc {
|
.hljs-javadoc {
|
||||||
color: #586e75;
|
color: #586e75;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.css .rule .hljs-keyword,
|
.css .rule .hljs-keyword,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.method,
|
.method,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.css .hljs-tag,
|
.css .hljs-tag,
|
||||||
.clojure .hljs-title,
|
.clojure .hljs-title,
|
||||||
.nginx .hljs-title {
|
.nginx .hljs-title {
|
||||||
color: #B64926;
|
color: #B64926;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-command,
|
.hljs-command,
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.hljs-hexcolor {
|
.hljs-hexcolor {
|
||||||
color: #468966;
|
color: #468966;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-localvars,
|
.hljs-localvars,
|
||||||
.hljs-function .hljs-title,
|
.hljs-function .hljs-title,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.clojure .hljs-built_in,
|
.clojure .hljs-built_in,
|
||||||
.hljs-identifier,
|
.hljs-identifier,
|
||||||
.hljs-id {
|
.hljs-id {
|
||||||
color: #FFB03B;
|
color: #FFB03B;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.lisp .hljs-body,
|
.lisp .hljs-body,
|
||||||
.smalltalk .hljs-number,
|
.smalltalk .hljs-number,
|
||||||
.hljs-constant,
|
.hljs-constant,
|
||||||
.hljs-class .hljs-title,
|
.hljs-class .hljs-title,
|
||||||
.hljs-parent,
|
.hljs-parent,
|
||||||
.haskell .hljs-type {
|
.haskell .hljs-type {
|
||||||
color: #b58900;
|
color: #b58900;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-attribute {
|
.css .hljs-attribute {
|
||||||
color: #b89859;
|
color: #b89859;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-number,
|
.css .hljs-number,
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #DCCF8F;
|
color: #DCCF8F;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-class {
|
.css .hljs-class {
|
||||||
color: #d3a60c;
|
color: #d3a60c;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.hljs-symbol .hljs-string,
|
.hljs-symbol .hljs-string,
|
||||||
.diff .hljs-change,
|
.diff .hljs-change,
|
||||||
.hljs-special,
|
.hljs-special,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-important,
|
.hljs-important,
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.hljs-cdata {
|
.hljs-cdata {
|
||||||
color: #cb4b16;
|
color: #cb4b16;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-deletion {
|
.hljs-deletion {
|
||||||
color: #dc322f;
|
color: #dc322f;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
background: #073642;
|
background: #073642;
|
||||||
}
|
}
|
||||||
|
|||||||
+182
-182
@@ -1,182 +1,182 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Railscasts-like style (c) Visoft, Inc. (Damien White)
|
Railscasts-like style (c) Visoft, Inc. (Damien White)
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
background: #232323;
|
background: #232323;
|
||||||
color: #E6E1DC;
|
color: #E6E1DC;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.hljs-shebang {
|
.hljs-shebang {
|
||||||
color: #BC9458;
|
color: #BC9458;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.ruby .hljs-function .hljs-keyword,
|
.ruby .hljs-function .hljs-keyword,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status,
|
.hljs-status,
|
||||||
.nginx .hljs-title,
|
.nginx .hljs-title,
|
||||||
.method,
|
.method,
|
||||||
.hljs-list .hljs-title {
|
.hljs-list .hljs-title {
|
||||||
color: #C26230;
|
color: #C26230;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-cdata,
|
.hljs-cdata,
|
||||||
.hljs-filter .hljs-argument,
|
.hljs-filter .hljs-argument,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.hljs-date,
|
.hljs-date,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.markdown .hljs-link_label {
|
.markdown .hljs-link_label {
|
||||||
color: #A5C261;
|
color: #A5C261;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-subst {
|
.hljs-subst {
|
||||||
color: #519F50;
|
color: #519F50;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-tag .hljs-keyword,
|
.hljs-tag .hljs-keyword,
|
||||||
.hljs-tag .hljs-title,
|
.hljs-tag .hljs-title,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-sub .hljs-identifier,
|
.hljs-sub .hljs-identifier,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.input_number {
|
.input_number {
|
||||||
color: #E8BF6A;
|
color: #E8BF6A;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-identifier {
|
.hljs-identifier {
|
||||||
color: #D0D0FF;
|
color: #D0D0FF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-class .hljs-title,
|
.hljs-class .hljs-title,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-javadoctag,
|
.hljs-javadoctag,
|
||||||
.hljs-yardoctag,
|
.hljs-yardoctag,
|
||||||
.hljs-phpdoc {
|
.hljs-phpdoc {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #DA4939;
|
color: #DA4939;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.ruby .hljs-symbol .hljs-identifier,
|
.ruby .hljs-symbol .hljs-identifier,
|
||||||
.markdown .hljs-link_url,
|
.markdown .hljs-link_url,
|
||||||
.hljs-attribute {
|
.hljs-attribute {
|
||||||
color: #6D9CBE;
|
color: #6D9CBE;
|
||||||
}
|
}
|
||||||
|
|
||||||
.markdown .hljs-link_url {
|
.markdown .hljs-link_url {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.clojure .hljs-attribute {
|
.clojure .hljs-attribute {
|
||||||
color: #D0D0FF;
|
color: #D0D0FF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-tag,
|
.css .hljs-tag,
|
||||||
.hljs-rules .hljs-property,
|
.hljs-rules .hljs-property,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.tex .hljs-special {
|
.tex .hljs-special {
|
||||||
color: #CDA869;
|
color: #CDA869;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-class {
|
.css .hljs-class {
|
||||||
color: #9B703F;
|
color: #9B703F;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-rules .hljs-keyword {
|
.hljs-rules .hljs-keyword {
|
||||||
color: #C5AF75;
|
color: #C5AF75;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-rules .hljs-value {
|
.hljs-rules .hljs-value {
|
||||||
color: #CF6A4C;
|
color: #CF6A4C;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-id {
|
.css .hljs-id {
|
||||||
color: #8B98AB;
|
color: #8B98AB;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-annotation,
|
.hljs-annotation,
|
||||||
.apache .hljs-sqbracket,
|
.apache .hljs-sqbracket,
|
||||||
.nginx .hljs-built_in {
|
.nginx .hljs-built_in {
|
||||||
color: #9B859D;
|
color: #9B859D;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-preprocessor *,
|
.hljs-preprocessor *,
|
||||||
.hljs-pragma {
|
.hljs-pragma {
|
||||||
color: #8996A8 !important;
|
color: #8996A8 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-hexcolor,
|
.hljs-hexcolor,
|
||||||
.css .hljs-value .hljs-number {
|
.css .hljs-value .hljs-number {
|
||||||
color: #A5C261;
|
color: #A5C261;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.css .hljs-function {
|
.css .hljs-function {
|
||||||
color: #FFC66D;
|
color: #FFC66D;
|
||||||
}
|
}
|
||||||
|
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-chunk {
|
.hljs-chunk {
|
||||||
background-color: #2F33AB;
|
background-color: #2F33AB;
|
||||||
color: #E6E1DC;
|
color: #E6E1DC;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.diff .hljs-change {
|
.diff .hljs-change {
|
||||||
background-color: #4A410D;
|
background-color: #4A410D;
|
||||||
color: #F8F8F8;
|
color: #F8F8F8;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-addition {
|
.hljs-addition {
|
||||||
background-color: #144212;
|
background-color: #144212;
|
||||||
color: #E6E1DC;
|
color: #E6E1DC;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-deletion {
|
.hljs-deletion {
|
||||||
background-color: #600;
|
background-color: #600;
|
||||||
color: #E6E1DC;
|
color: #E6E1DC;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
}
|
}
|
||||||
|
|||||||
+112
-112
@@ -1,112 +1,112 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Style with support for rainbow parens
|
Style with support for rainbow parens
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: #474949; color: #D1D9E1;
|
background: #474949; color: #D1D9E1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.hljs-body,
|
.hljs-body,
|
||||||
.hljs-collection {
|
.hljs-collection {
|
||||||
color: #D1D9E1;
|
color: #D1D9E1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.lisp .hljs-string,
|
.lisp .hljs-string,
|
||||||
.hljs-javadoc {
|
.hljs-javadoc {
|
||||||
color: #969896;
|
color: #969896;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.clojure .hljs-attribute,
|
.clojure .hljs-attribute,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.css .hljs-tag {
|
.css .hljs-tag {
|
||||||
color: #cc99cc;
|
color: #cc99cc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-number { color: #f99157; }
|
.hljs-number { color: #f99157; }
|
||||||
|
|
||||||
.hljs-command,
|
.hljs-command,
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.hljs-hexcolor {
|
.hljs-hexcolor {
|
||||||
color: #8abeb7;
|
color: #8abeb7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-localvars,
|
.hljs-localvars,
|
||||||
.hljs-function .hljs-title,
|
.hljs-function .hljs-title,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.hljs-identifier
|
.hljs-identifier
|
||||||
{
|
{
|
||||||
color: #b5bd68;
|
color: #b5bd68;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-class .hljs-keyword
|
.hljs-class .hljs-keyword
|
||||||
{
|
{
|
||||||
color: #f2777a;
|
color: #f2777a;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.lisp .hljs-body,
|
.lisp .hljs-body,
|
||||||
.smalltalk .hljs-number,
|
.smalltalk .hljs-number,
|
||||||
.hljs-constant,
|
.hljs-constant,
|
||||||
.hljs-class .hljs-title,
|
.hljs-class .hljs-title,
|
||||||
.hljs-parent,
|
.hljs-parent,
|
||||||
.haskell .hljs-label,
|
.haskell .hljs-label,
|
||||||
.hljs-id,
|
.hljs-id,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.clojure .hljs-title .hljs-built_in {
|
.clojure .hljs-title .hljs-built_in {
|
||||||
color: #ffcc66;
|
color: #ffcc66;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-tag .hljs-title,
|
.hljs-tag .hljs-title,
|
||||||
.hljs-rules .hljs-property,
|
.hljs-rules .hljs-property,
|
||||||
.django .hljs-tag .hljs-keyword,
|
.django .hljs-tag .hljs-keyword,
|
||||||
.clojure .hljs-title .hljs-built_in {
|
.clojure .hljs-title .hljs-built_in {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.clojure .hljs-title {
|
.clojure .hljs-title {
|
||||||
color: #81a2be;
|
color: #81a2be;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.hljs-symbol .hljs-string,
|
.hljs-symbol .hljs-string,
|
||||||
.diff .hljs-change,
|
.diff .hljs-change,
|
||||||
.hljs-special,
|
.hljs-special,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-important,
|
.hljs-important,
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.hljs-cdata {
|
.hljs-cdata {
|
||||||
color: #f99157;
|
color: #f99157;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-deletion {
|
.hljs-deletion {
|
||||||
color: #dc322f;
|
color: #dc322f;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
background: #eee8d5;
|
background: #eee8d5;
|
||||||
}
|
}
|
||||||
|
|||||||
+113
-113
@@ -1,113 +1,113 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
School Book style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>
|
School Book style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 15px 0.5em 0.5em 30px;
|
display: block; padding: 15px 0.5em 0.5em 30px;
|
||||||
font-size: 11px !important;
|
font-size: 11px !important;
|
||||||
line-height:16px !important;
|
line-height:16px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre{
|
pre{
|
||||||
background:#f6f6ae url(./school_book.png);
|
background:#f6f6ae url(./school_book.png);
|
||||||
border-top: solid 2px #d2e8b9;
|
border-top: solid 2px #d2e8b9;
|
||||||
border-bottom: solid 1px #d2e8b9;
|
border-bottom: solid 1px #d2e8b9;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-change,
|
.hljs-change,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.hljs-flow,
|
.hljs-flow,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.clojure .hljs-built_in,
|
.clojure .hljs-built_in,
|
||||||
.nginx .hljs-title,
|
.nginx .hljs-title,
|
||||||
.tex .hljs-special {
|
.tex .hljs-special {
|
||||||
color:#005599;
|
color:#005599;
|
||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs,
|
.hljs,
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.hljs-tag .hljs-keyword {
|
.hljs-tag .hljs-keyword {
|
||||||
color: #3E5915;
|
color: #3E5915;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.css .hljs-rules .hljs-value,
|
.css .hljs-rules .hljs-value,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.ruby .hljs-class .hljs-parent,
|
.ruby .hljs-class .hljs-parent,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.django .hljs-template_tag,
|
.django .hljs-template_tag,
|
||||||
.django .hljs-variable,
|
.django .hljs-variable,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.ruby .hljs-string,
|
.ruby .hljs-string,
|
||||||
.django .hljs-filter .hljs-argument,
|
.django .hljs-filter .hljs-argument,
|
||||||
.smalltalk .hljs-localvars,
|
.smalltalk .hljs-localvars,
|
||||||
.smalltalk .hljs-array,
|
.smalltalk .hljs-array,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.hljs-stream,
|
.hljs-stream,
|
||||||
.hljs-envvar,
|
.hljs-envvar,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.nginx .hljs-built_in,
|
.nginx .hljs-built_in,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.coffeescript .hljs-attribute {
|
.coffeescript .hljs-attribute {
|
||||||
color: #2C009F;
|
color: #2C009F;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.java .hljs-annotation,
|
.java .hljs-annotation,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.apache .hljs-sqbracket {
|
.apache .hljs-sqbracket {
|
||||||
color: #E60415;
|
color: #E60415;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.vbscript .hljs-built_in,
|
.vbscript .hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.rsl .hljs-built_in,
|
.rsl .hljs-built_in,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.bash .hljs-variable,
|
.bash .hljs-variable,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status {
|
.hljs-status {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+107
-107
@@ -1,107 +1,107 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
|
Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
background: #002b36;
|
background: #002b36;
|
||||||
color: #839496;
|
color: #839496;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.lisp .hljs-string,
|
.lisp .hljs-string,
|
||||||
.hljs-javadoc {
|
.hljs-javadoc {
|
||||||
color: #586e75;
|
color: #586e75;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Solarized Green */
|
/* Solarized Green */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.method,
|
.method,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.css .hljs-tag,
|
.css .hljs-tag,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status,
|
.hljs-status,
|
||||||
.nginx .hljs-title {
|
.nginx .hljs-title {
|
||||||
color: #859900;
|
color: #859900;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Solarized Cyan */
|
/* Solarized Cyan */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-command,
|
.hljs-command,
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-rules .hljs-value,
|
.hljs-rules .hljs-value,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.hljs-hexcolor,
|
.hljs-hexcolor,
|
||||||
.hljs-link_url {
|
.hljs-link_url {
|
||||||
color: #2aa198;
|
color: #2aa198;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Solarized Blue */
|
/* Solarized Blue */
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-localvars,
|
.hljs-localvars,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-identifier,
|
.hljs-identifier,
|
||||||
.vhdl .hljs-literal,
|
.vhdl .hljs-literal,
|
||||||
.hljs-id,
|
.hljs-id,
|
||||||
.css .hljs-function {
|
.css .hljs-function {
|
||||||
color: #268bd2;
|
color: #268bd2;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Solarized Yellow */
|
/* Solarized Yellow */
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.lisp .hljs-body,
|
.lisp .hljs-body,
|
||||||
.smalltalk .hljs-number,
|
.smalltalk .hljs-number,
|
||||||
.hljs-constant,
|
.hljs-constant,
|
||||||
.hljs-class .hljs-title,
|
.hljs-class .hljs-title,
|
||||||
.hljs-parent,
|
.hljs-parent,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.hljs-link_reference {
|
.hljs-link_reference {
|
||||||
color: #b58900;
|
color: #b58900;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Solarized Orange */
|
/* Solarized Orange */
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-preprocessor .hljs-keyword,
|
.hljs-preprocessor .hljs-keyword,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.hljs-symbol .hljs-string,
|
.hljs-symbol .hljs-string,
|
||||||
.diff .hljs-change,
|
.diff .hljs-change,
|
||||||
.hljs-special,
|
.hljs-special,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.hljs-cdata,
|
.hljs-cdata,
|
||||||
.clojure .hljs-title,
|
.clojure .hljs-title,
|
||||||
.css .hljs-pseudo,
|
.css .hljs-pseudo,
|
||||||
.hljs-header {
|
.hljs-header {
|
||||||
color: #cb4b16;
|
color: #cb4b16;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Solarized Red */
|
/* Solarized Red */
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.hljs-important {
|
.hljs-important {
|
||||||
color: #dc322f;
|
color: #dc322f;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Solarized Violet */
|
/* Solarized Violet */
|
||||||
.hljs-link_label {
|
.hljs-link_label {
|
||||||
color: #6c71c4;
|
color: #6c71c4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
background: #073642;
|
background: #073642;
|
||||||
}
|
}
|
||||||
|
|||||||
+107
-107
@@ -1,107 +1,107 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
|
Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
background: #fdf6e3;
|
background: #fdf6e3;
|
||||||
color: #657b83;
|
color: #657b83;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.lisp .hljs-string,
|
.lisp .hljs-string,
|
||||||
.hljs-javadoc {
|
.hljs-javadoc {
|
||||||
color: #93a1a1;
|
color: #93a1a1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Solarized Green */
|
/* Solarized Green */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.method,
|
.method,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.css .hljs-tag,
|
.css .hljs-tag,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status,
|
.hljs-status,
|
||||||
.nginx .hljs-title {
|
.nginx .hljs-title {
|
||||||
color: #859900;
|
color: #859900;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Solarized Cyan */
|
/* Solarized Cyan */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-command,
|
.hljs-command,
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-rules .hljs-value,
|
.hljs-rules .hljs-value,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.hljs-hexcolor,
|
.hljs-hexcolor,
|
||||||
.hljs-link_url {
|
.hljs-link_url {
|
||||||
color: #2aa198;
|
color: #2aa198;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Solarized Blue */
|
/* Solarized Blue */
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-localvars,
|
.hljs-localvars,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-identifier,
|
.hljs-identifier,
|
||||||
.vhdl .hljs-literal,
|
.vhdl .hljs-literal,
|
||||||
.hljs-id,
|
.hljs-id,
|
||||||
.css .hljs-function {
|
.css .hljs-function {
|
||||||
color: #268bd2;
|
color: #268bd2;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Solarized Yellow */
|
/* Solarized Yellow */
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.lisp .hljs-body,
|
.lisp .hljs-body,
|
||||||
.smalltalk .hljs-number,
|
.smalltalk .hljs-number,
|
||||||
.hljs-constant,
|
.hljs-constant,
|
||||||
.hljs-class .hljs-title,
|
.hljs-class .hljs-title,
|
||||||
.hljs-parent,
|
.hljs-parent,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.hljs-link_reference {
|
.hljs-link_reference {
|
||||||
color: #b58900;
|
color: #b58900;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Solarized Orange */
|
/* Solarized Orange */
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-preprocessor .hljs-keyword,
|
.hljs-preprocessor .hljs-keyword,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.hljs-symbol .hljs-string,
|
.hljs-symbol .hljs-string,
|
||||||
.diff .hljs-change,
|
.diff .hljs-change,
|
||||||
.hljs-special,
|
.hljs-special,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-subst,
|
.hljs-subst,
|
||||||
.hljs-cdata,
|
.hljs-cdata,
|
||||||
.clojure .hljs-title,
|
.clojure .hljs-title,
|
||||||
.css .hljs-pseudo,
|
.css .hljs-pseudo,
|
||||||
.hljs-header {
|
.hljs-header {
|
||||||
color: #cb4b16;
|
color: #cb4b16;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Solarized Red */
|
/* Solarized Red */
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.hljs-important {
|
.hljs-important {
|
||||||
color: #dc322f;
|
color: #dc322f;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Solarized Violet */
|
/* Solarized Violet */
|
||||||
.hljs-link_label {
|
.hljs-link_label {
|
||||||
color: #6c71c4;
|
color: #6c71c4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
background: #eee8d5;
|
background: #eee8d5;
|
||||||
}
|
}
|
||||||
|
|||||||
+160
-160
@@ -1,160 +1,160 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Sunburst-like style (c) Vasily Polovnyov <vast@whiteants.net>
|
Sunburst-like style (c) Vasily Polovnyov <vast@whiteants.net>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: #000; color: #f8f8f8;
|
background: #000; color: #f8f8f8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-javadoc {
|
.hljs-javadoc {
|
||||||
color: #aeaeae;
|
color: #aeaeae;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.ruby .hljs-function .hljs-keyword,
|
.ruby .hljs-function .hljs-keyword,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status,
|
.hljs-status,
|
||||||
.nginx .hljs-title {
|
.nginx .hljs-title {
|
||||||
color: #E28964;
|
color: #E28964;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-function .hljs-keyword,
|
.hljs-function .hljs-keyword,
|
||||||
.hljs-sub .hljs-keyword,
|
.hljs-sub .hljs-keyword,
|
||||||
.method,
|
.method,
|
||||||
.hljs-list .hljs-title {
|
.hljs-list .hljs-title {
|
||||||
color: #99CF50;
|
color: #99CF50;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-cdata,
|
.hljs-cdata,
|
||||||
.hljs-filter .hljs-argument,
|
.hljs-filter .hljs-argument,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.hljs-date,
|
.hljs-date,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.coffeescript .hljs-attribute {
|
.coffeescript .hljs-attribute {
|
||||||
color: #65B042;
|
color: #65B042;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-subst {
|
.hljs-subst {
|
||||||
color: #DAEFA3;
|
color: #DAEFA3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-regexp {
|
.hljs-regexp {
|
||||||
color: #E9C062;
|
color: #E9C062;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-sub .hljs-identifier,
|
.hljs-sub .hljs-identifier,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-tag .hljs-keyword,
|
.hljs-tag .hljs-keyword,
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.hljs-prompt {
|
.hljs-prompt {
|
||||||
color: #89BDFF;
|
color: #89BDFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-class .hljs-title,
|
.hljs-class .hljs-title,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-javadoctag,
|
.hljs-javadoctag,
|
||||||
.hljs-yardoctag,
|
.hljs-yardoctag,
|
||||||
.hljs-phpdoc {
|
.hljs-phpdoc {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.hljs-number {
|
.hljs-number {
|
||||||
color: #3387CC;
|
color: #3387CC;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.clojure .hljs-attribute {
|
.clojure .hljs-attribute {
|
||||||
color: #3E87E3;
|
color: #3E87E3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-tag,
|
.css .hljs-tag,
|
||||||
.hljs-rules .hljs-property,
|
.hljs-rules .hljs-property,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.tex .hljs-special {
|
.tex .hljs-special {
|
||||||
color: #CDA869;
|
color: #CDA869;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-class {
|
.css .hljs-class {
|
||||||
color: #9B703F;
|
color: #9B703F;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-rules .hljs-keyword {
|
.hljs-rules .hljs-keyword {
|
||||||
color: #C5AF75;
|
color: #C5AF75;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-rules .hljs-value {
|
.hljs-rules .hljs-value {
|
||||||
color: #CF6A4C;
|
color: #CF6A4C;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-id {
|
.css .hljs-id {
|
||||||
color: #8B98AB;
|
color: #8B98AB;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-annotation,
|
.hljs-annotation,
|
||||||
.apache .hljs-sqbracket,
|
.apache .hljs-sqbracket,
|
||||||
.nginx .hljs-built_in {
|
.nginx .hljs-built_in {
|
||||||
color: #9B859D;
|
color: #9B859D;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma {
|
.hljs-pragma {
|
||||||
color: #8996A8;
|
color: #8996A8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-hexcolor,
|
.hljs-hexcolor,
|
||||||
.css .hljs-value .hljs-number {
|
.css .hljs-value .hljs-number {
|
||||||
color: #DD7B3B;
|
color: #DD7B3B;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-function {
|
.css .hljs-function {
|
||||||
color: #DAD085;
|
color: #DAD085;
|
||||||
}
|
}
|
||||||
|
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
background-color: #0E2231;
|
background-color: #0E2231;
|
||||||
color: #F8F8F8;
|
color: #F8F8F8;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.diff .hljs-change {
|
.diff .hljs-change {
|
||||||
background-color: #4A410D;
|
background-color: #4A410D;
|
||||||
color: #F8F8F8;
|
color: #F8F8F8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-addition {
|
.hljs-addition {
|
||||||
background-color: #253B22;
|
background-color: #253B22;
|
||||||
color: #F8F8F8;
|
color: #F8F8F8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-deletion {
|
.hljs-deletion {
|
||||||
background-color: #420E09;
|
background-color: #420E09;
|
||||||
color: #F8F8F8;
|
color: #F8F8F8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+93
-93
@@ -1,93 +1,93 @@
|
|||||||
/* Tomorrow Night Blue Theme */
|
/* Tomorrow Night Blue Theme */
|
||||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||||
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
|
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
|
||||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||||
|
|
||||||
/* Tomorrow Comment */
|
/* Tomorrow Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #7285b7;
|
color: #7285b7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Red */
|
/* Tomorrow Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #ff9da4;
|
color: #ff9da4;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Orange */
|
/* Tomorrow Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #ffc58f;
|
color: #ffc58f;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Yellow */
|
/* Tomorrow Yellow */
|
||||||
.ruby .hljs-class .hljs-title,
|
.ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #ffeead;
|
color: #ffeead;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Green */
|
/* Tomorrow Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #d1f1a9;
|
color: #d1f1a9;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Aqua */
|
/* Tomorrow Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #99ffff;
|
color: #99ffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Blue */
|
/* Tomorrow Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #bbdaff;
|
color: #bbdaff;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Purple */
|
/* Tomorrow Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #ebbbff;
|
color: #ebbbff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #002451;
|
background: #002451;
|
||||||
color: white;
|
color: white;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+92
-92
@@ -1,92 +1,92 @@
|
|||||||
/* Tomorrow Night Bright Theme */
|
/* Tomorrow Night Bright Theme */
|
||||||
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
|
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
|
||||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||||
|
|
||||||
/* Tomorrow Comment */
|
/* Tomorrow Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #969896;
|
color: #969896;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Red */
|
/* Tomorrow Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #d54e53;
|
color: #d54e53;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Orange */
|
/* Tomorrow Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #e78c45;
|
color: #e78c45;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Yellow */
|
/* Tomorrow Yellow */
|
||||||
.ruby .hljs-class .hljs-title,
|
.ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #e7c547;
|
color: #e7c547;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Green */
|
/* Tomorrow Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #b9ca4a;
|
color: #b9ca4a;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Aqua */
|
/* Tomorrow Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #70c0b1;
|
color: #70c0b1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Blue */
|
/* Tomorrow Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #7aa6da;
|
color: #7aa6da;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Purple */
|
/* Tomorrow Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #c397d8;
|
color: #c397d8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: black;
|
background: black;
|
||||||
color: #eaeaea;
|
color: #eaeaea;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+92
-92
@@ -1,92 +1,92 @@
|
|||||||
/* Tomorrow Night Eighties Theme */
|
/* Tomorrow Night Eighties Theme */
|
||||||
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
|
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
|
||||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||||
|
|
||||||
/* Tomorrow Comment */
|
/* Tomorrow Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #999999;
|
color: #999999;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Red */
|
/* Tomorrow Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #f2777a;
|
color: #f2777a;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Orange */
|
/* Tomorrow Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #f99157;
|
color: #f99157;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Yellow */
|
/* Tomorrow Yellow */
|
||||||
.ruby .hljs-class .hljs-title,
|
.ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #ffcc66;
|
color: #ffcc66;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Green */
|
/* Tomorrow Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #99cc99;
|
color: #99cc99;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Aqua */
|
/* Tomorrow Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #66cccc;
|
color: #66cccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Blue */
|
/* Tomorrow Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #6699cc;
|
color: #6699cc;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Purple */
|
/* Tomorrow Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #cc99cc;
|
color: #cc99cc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #2d2d2d;
|
background: #2d2d2d;
|
||||||
color: #cccccc;
|
color: #cccccc;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+93
-93
@@ -1,93 +1,93 @@
|
|||||||
/* Tomorrow Night Theme */
|
/* Tomorrow Night Theme */
|
||||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||||
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
|
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
|
||||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||||
|
|
||||||
/* Tomorrow Comment */
|
/* Tomorrow Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #969896;
|
color: #969896;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Red */
|
/* Tomorrow Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #cc6666;
|
color: #cc6666;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Orange */
|
/* Tomorrow Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #de935f;
|
color: #de935f;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Yellow */
|
/* Tomorrow Yellow */
|
||||||
.ruby .hljs-class .hljs-title,
|
.ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #f0c674;
|
color: #f0c674;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Green */
|
/* Tomorrow Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #b5bd68;
|
color: #b5bd68;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Aqua */
|
/* Tomorrow Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #8abeb7;
|
color: #8abeb7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Blue */
|
/* Tomorrow Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #81a2be;
|
color: #81a2be;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Purple */
|
/* Tomorrow Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #b294bb;
|
color: #b294bb;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: #1d1f21;
|
background: #1d1f21;
|
||||||
color: #c5c8c6;
|
color: #c5c8c6;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+90
-90
@@ -1,90 +1,90 @@
|
|||||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||||
|
|
||||||
/* Tomorrow Comment */
|
/* Tomorrow Comment */
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-title {
|
.hljs-title {
|
||||||
color: #8e908c;
|
color: #8e908c;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Red */
|
/* Tomorrow Red */
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.hljs-attribute,
|
.hljs-attribute,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-regexp,
|
.hljs-regexp,
|
||||||
.ruby .hljs-constant,
|
.ruby .hljs-constant,
|
||||||
.xml .hljs-tag .hljs-title,
|
.xml .hljs-tag .hljs-title,
|
||||||
.xml .hljs-pi,
|
.xml .hljs-pi,
|
||||||
.xml .hljs-doctype,
|
.xml .hljs-doctype,
|
||||||
.html .hljs-doctype,
|
.html .hljs-doctype,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-pseudo {
|
.css .hljs-pseudo {
|
||||||
color: #c82829;
|
color: #c82829;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Orange */
|
/* Tomorrow Orange */
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.hljs-constant {
|
.hljs-constant {
|
||||||
color: #f5871f;
|
color: #f5871f;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Yellow */
|
/* Tomorrow Yellow */
|
||||||
.ruby .hljs-class .hljs-title,
|
.ruby .hljs-class .hljs-title,
|
||||||
.css .hljs-rules .hljs-attribute {
|
.css .hljs-rules .hljs-attribute {
|
||||||
color: #eab700;
|
color: #eab700;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Green */
|
/* Tomorrow Green */
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-value,
|
.hljs-value,
|
||||||
.hljs-inheritance,
|
.hljs-inheritance,
|
||||||
.hljs-header,
|
.hljs-header,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
color: #718c00;
|
color: #718c00;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Aqua */
|
/* Tomorrow Aqua */
|
||||||
.css .hljs-hexcolor {
|
.css .hljs-hexcolor {
|
||||||
color: #3e999f;
|
color: #3e999f;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Blue */
|
/* Tomorrow Blue */
|
||||||
.hljs-function,
|
.hljs-function,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.python .hljs-title,
|
.python .hljs-title,
|
||||||
.ruby .hljs-function .hljs-title,
|
.ruby .hljs-function .hljs-title,
|
||||||
.ruby .hljs-title .hljs-keyword,
|
.ruby .hljs-title .hljs-keyword,
|
||||||
.perl .hljs-sub,
|
.perl .hljs-sub,
|
||||||
.javascript .hljs-title,
|
.javascript .hljs-title,
|
||||||
.coffeescript .hljs-title {
|
.coffeescript .hljs-title {
|
||||||
color: #4271ae;
|
color: #4271ae;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tomorrow Purple */
|
/* Tomorrow Purple */
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.javascript .hljs-function {
|
.javascript .hljs-function {
|
||||||
color: #8959a8;
|
color: #8959a8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block;
|
display: block;
|
||||||
background: white;
|
background: white;
|
||||||
color: #4d4d4c;
|
color: #4d4d4c;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
+89
-89
@@ -1,89 +1,89 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
|
Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: white; color: black;
|
background: white; color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-annotation,
|
.hljs-annotation,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-chunk,
|
.hljs-chunk,
|
||||||
.apache .hljs-cbracket {
|
.apache .hljs-cbracket {
|
||||||
color: #008000;
|
color: #008000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-id,
|
.hljs-id,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.bash .hljs-variable,
|
.bash .hljs-variable,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status,
|
.hljs-status,
|
||||||
.nginx .hljs-title,
|
.nginx .hljs-title,
|
||||||
.xml .hljs-tag,
|
.xml .hljs-tag,
|
||||||
.xml .hljs-tag .hljs-value {
|
.xml .hljs-tag .hljs-value {
|
||||||
color: #00f;
|
color: #00f;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.hljs-parent,
|
.hljs-parent,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-rules .hljs-value,
|
.hljs-rules .hljs-value,
|
||||||
.hljs-rules .hljs-value .hljs-number,
|
.hljs-rules .hljs-value .hljs-number,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.hljs-aggregate,
|
.hljs-aggregate,
|
||||||
.hljs-template_tag,
|
.hljs-template_tag,
|
||||||
.django .hljs-variable,
|
.django .hljs-variable,
|
||||||
.hljs-addition,
|
.hljs-addition,
|
||||||
.hljs-flow,
|
.hljs-flow,
|
||||||
.hljs-stream,
|
.hljs-stream,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.hljs-date,
|
.hljs-date,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.coffeescript .hljs-attribute {
|
.coffeescript .hljs-attribute {
|
||||||
color: #a31515;
|
color: #a31515;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ruby .hljs-string,
|
.ruby .hljs-string,
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.hljs-filter .hljs-argument,
|
.hljs-filter .hljs-argument,
|
||||||
.hljs-localvars,
|
.hljs-localvars,
|
||||||
.hljs-array,
|
.hljs-array,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-deletion,
|
.hljs-deletion,
|
||||||
.hljs-envvar,
|
.hljs-envvar,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.userType,
|
.userType,
|
||||||
.apache .hljs-sqbracket,
|
.apache .hljs-sqbracket,
|
||||||
.nginx .hljs-built_in,
|
.nginx .hljs-built_in,
|
||||||
.tex .hljs-special,
|
.tex .hljs-special,
|
||||||
.hljs-prompt {
|
.hljs-prompt {
|
||||||
color: #2b91af;
|
color: #2b91af;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.hljs-xmlDocTag {
|
.hljs-xmlDocTag {
|
||||||
color: #808080;
|
color: #808080;
|
||||||
}
|
}
|
||||||
|
|
||||||
.vhdl .hljs-typename { font-weight: bold; }
|
.vhdl .hljs-typename { font-weight: bold; }
|
||||||
.vhdl .hljs-string { color: #666666; }
|
.vhdl .hljs-string { color: #666666; }
|
||||||
.vhdl .hljs-literal { color: #a31515; }
|
.vhdl .hljs-literal { color: #a31515; }
|
||||||
.vhdl .hljs-attribute { color: #00B0E8; }
|
.vhdl .hljs-attribute { color: #00B0E8; }
|
||||||
|
|
||||||
.xml .hljs-attribute { color: #f00; }
|
.xml .hljs-attribute { color: #f00; }
|
||||||
|
|||||||
+158
-158
@@ -1,158 +1,158 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
XCode style (c) Angel Garcia <angelgarcia.mail@gmail.com>
|
XCode style (c) Angel Garcia <angelgarcia.mail@gmail.com>
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: #fff; color: black;
|
background: #fff; color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.hljs-comment * {
|
.hljs-comment * {
|
||||||
color: #006a00;
|
color: #006a00;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.nginx .hljs-title {
|
.nginx .hljs-title {
|
||||||
color: #aa0d91;
|
color: #aa0d91;
|
||||||
}
|
}
|
||||||
.method,
|
.method,
|
||||||
.hljs-list .hljs-title,
|
.hljs-list .hljs-title,
|
||||||
.hljs-tag .hljs-title,
|
.hljs-tag .hljs-title,
|
||||||
.setting .hljs-value,
|
.setting .hljs-value,
|
||||||
.hljs-winutils,
|
.hljs-winutils,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.http .hljs-title,
|
.http .hljs-title,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status {
|
.hljs-status {
|
||||||
color: #008;
|
color: #008;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-envvar,
|
.hljs-envvar,
|
||||||
.tex .hljs-special {
|
.tex .hljs-special {
|
||||||
color: #660;
|
color: #660;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string {
|
.hljs-string {
|
||||||
color: #c41a16;
|
color: #c41a16;
|
||||||
}
|
}
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-cdata,
|
.hljs-cdata,
|
||||||
.hljs-filter .hljs-argument,
|
.hljs-filter .hljs-argument,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.hljs-date,
|
.hljs-date,
|
||||||
.hljs-regexp {
|
.hljs-regexp {
|
||||||
color: #080;
|
color: #080;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-sub .hljs-identifier,
|
.hljs-sub .hljs-identifier,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.hljs-tag .hljs-keyword,
|
.hljs-tag .hljs-keyword,
|
||||||
.hljs-decorator,
|
.hljs-decorator,
|
||||||
.ini .hljs-title,
|
.ini .hljs-title,
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.hljs-prompt,
|
.hljs-prompt,
|
||||||
.hljs-hexcolor,
|
.hljs-hexcolor,
|
||||||
.hljs-rules .hljs-value,
|
.hljs-rules .hljs-value,
|
||||||
.css .hljs-value .hljs-number,
|
.css .hljs-value .hljs-number,
|
||||||
.hljs-symbol,
|
.hljs-symbol,
|
||||||
.hljs-symbol .hljs-string,
|
.hljs-symbol .hljs-string,
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.css .hljs-function,
|
.css .hljs-function,
|
||||||
.clojure .hljs-title,
|
.clojure .hljs-title,
|
||||||
.clojure .hljs-built_in,
|
.clojure .hljs-built_in,
|
||||||
.hljs-function .hljs-title,
|
.hljs-function .hljs-title,
|
||||||
.coffeescript .hljs-attribute {
|
.coffeescript .hljs-attribute {
|
||||||
color: #1c00cf;
|
color: #1c00cf;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-class .hljs-title,
|
.hljs-class .hljs-title,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.hljs-javadoctag,
|
.hljs-javadoctag,
|
||||||
.hljs-yardoctag,
|
.hljs-yardoctag,
|
||||||
.hljs-phpdoc,
|
.hljs-phpdoc,
|
||||||
.hljs-typename,
|
.hljs-typename,
|
||||||
.hljs-tag .hljs-attribute,
|
.hljs-tag .hljs-attribute,
|
||||||
.hljs-doctype,
|
.hljs-doctype,
|
||||||
.hljs-class .hljs-id,
|
.hljs-class .hljs-id,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.setting,
|
.setting,
|
||||||
.hljs-params,
|
.hljs-params,
|
||||||
.clojure .hljs-attribute {
|
.clojure .hljs-attribute {
|
||||||
color: #5c2699;
|
color: #5c2699;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-variable {
|
.hljs-variable {
|
||||||
color: #3f6e74;
|
color: #3f6e74;
|
||||||
}
|
}
|
||||||
.css .hljs-tag,
|
.css .hljs-tag,
|
||||||
.hljs-rules .hljs-property,
|
.hljs-rules .hljs-property,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.hljs-subst {
|
.hljs-subst {
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-id {
|
.css .hljs-id {
|
||||||
color: #9B703F;
|
color: #9B703F;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-value .hljs-important {
|
.hljs-value .hljs-important {
|
||||||
color: #ff7700;
|
color: #ff7700;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-rules .hljs-keyword {
|
.hljs-rules .hljs-keyword {
|
||||||
color: #C5AF75;
|
color: #C5AF75;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-annotation,
|
.hljs-annotation,
|
||||||
.apache .hljs-sqbracket,
|
.apache .hljs-sqbracket,
|
||||||
.nginx .hljs-built_in {
|
.nginx .hljs-built_in {
|
||||||
color: #9B859D;
|
color: #9B859D;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-preprocessor *,
|
.hljs-preprocessor *,
|
||||||
.hljs-pragma {
|
.hljs-pragma {
|
||||||
color: #643820;
|
color: #643820;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tex .hljs-formula {
|
.tex .hljs-formula {
|
||||||
background-color: #EEE;
|
background-color: #EEE;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.hljs-chunk {
|
.hljs-chunk {
|
||||||
color: #808080;
|
color: #808080;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.diff .hljs-change {
|
.diff .hljs-change {
|
||||||
background-color: #BCCFF9;
|
background-color: #BCCFF9;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-addition {
|
.hljs-addition {
|
||||||
background-color: #BAEEBA;
|
background-color: #BAEEBA;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-deletion {
|
.hljs-deletion {
|
||||||
background-color: #FFC8BD;
|
background-color: #FFC8BD;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-comment .hljs-yardoctag {
|
.hljs-comment .hljs-yardoctag {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.method .hljs-id {
|
.method .hljs-id {
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|||||||
+116
-116
@@ -1,116 +1,116 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Zenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>
|
Zenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>
|
||||||
based on dark.css by Ivan Sagalaev
|
based on dark.css by Ivan Sagalaev
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.hljs {
|
.hljs {
|
||||||
display: block; padding: 0.5em;
|
display: block; padding: 0.5em;
|
||||||
background: #3F3F3F;
|
background: #3F3F3F;
|
||||||
color: #DCDCDC;
|
color: #DCDCDC;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-keyword,
|
.hljs-keyword,
|
||||||
.hljs-tag,
|
.hljs-tag,
|
||||||
.css .hljs-class,
|
.css .hljs-class,
|
||||||
.css .hljs-id,
|
.css .hljs-id,
|
||||||
.lisp .hljs-title,
|
.lisp .hljs-title,
|
||||||
.nginx .hljs-title,
|
.nginx .hljs-title,
|
||||||
.hljs-request,
|
.hljs-request,
|
||||||
.hljs-status,
|
.hljs-status,
|
||||||
.clojure .hljs-attribute {
|
.clojure .hljs-attribute {
|
||||||
color: #E3CEAB;
|
color: #E3CEAB;
|
||||||
}
|
}
|
||||||
|
|
||||||
.django .hljs-template_tag,
|
.django .hljs-template_tag,
|
||||||
.django .hljs-variable,
|
.django .hljs-variable,
|
||||||
.django .hljs-filter .hljs-argument {
|
.django .hljs-filter .hljs-argument {
|
||||||
color: #DCDCDC;
|
color: #DCDCDC;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-number,
|
.hljs-number,
|
||||||
.hljs-date {
|
.hljs-date {
|
||||||
color: #8CD0D3;
|
color: #8CD0D3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dos .hljs-envvar,
|
.dos .hljs-envvar,
|
||||||
.dos .hljs-stream,
|
.dos .hljs-stream,
|
||||||
.hljs-variable,
|
.hljs-variable,
|
||||||
.apache .hljs-sqbracket {
|
.apache .hljs-sqbracket {
|
||||||
color: #EFDCBC;
|
color: #EFDCBC;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dos .hljs-flow,
|
.dos .hljs-flow,
|
||||||
.diff .hljs-change,
|
.diff .hljs-change,
|
||||||
.python .exception,
|
.python .exception,
|
||||||
.python .hljs-built_in,
|
.python .hljs-built_in,
|
||||||
.hljs-literal,
|
.hljs-literal,
|
||||||
.tex .hljs-special {
|
.tex .hljs-special {
|
||||||
color: #EFEFAF;
|
color: #EFEFAF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.diff .hljs-chunk,
|
.diff .hljs-chunk,
|
||||||
.hljs-subst {
|
.hljs-subst {
|
||||||
color: #8F8F8F;
|
color: #8F8F8F;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dos .hljs-keyword,
|
.dos .hljs-keyword,
|
||||||
.python .hljs-decorator,
|
.python .hljs-decorator,
|
||||||
.hljs-title,
|
.hljs-title,
|
||||||
.haskell .hljs-type,
|
.haskell .hljs-type,
|
||||||
.diff .hljs-header,
|
.diff .hljs-header,
|
||||||
.ruby .hljs-class .hljs-parent,
|
.ruby .hljs-class .hljs-parent,
|
||||||
.apache .hljs-tag,
|
.apache .hljs-tag,
|
||||||
.nginx .hljs-built_in,
|
.nginx .hljs-built_in,
|
||||||
.tex .hljs-command,
|
.tex .hljs-command,
|
||||||
.hljs-prompt {
|
.hljs-prompt {
|
||||||
color: #efef8f;
|
color: #efef8f;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dos .hljs-winutils,
|
.dos .hljs-winutils,
|
||||||
.ruby .hljs-symbol,
|
.ruby .hljs-symbol,
|
||||||
.ruby .hljs-symbol .hljs-string,
|
.ruby .hljs-symbol .hljs-string,
|
||||||
.ruby .hljs-string {
|
.ruby .hljs-string {
|
||||||
color: #DCA3A3;
|
color: #DCA3A3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.diff .hljs-deletion,
|
.diff .hljs-deletion,
|
||||||
.hljs-string,
|
.hljs-string,
|
||||||
.hljs-tag .hljs-value,
|
.hljs-tag .hljs-value,
|
||||||
.hljs-preprocessor,
|
.hljs-preprocessor,
|
||||||
.hljs-pragma,
|
.hljs-pragma,
|
||||||
.hljs-built_in,
|
.hljs-built_in,
|
||||||
.sql .hljs-aggregate,
|
.sql .hljs-aggregate,
|
||||||
.hljs-javadoc,
|
.hljs-javadoc,
|
||||||
.smalltalk .hljs-class,
|
.smalltalk .hljs-class,
|
||||||
.smalltalk .hljs-localvars,
|
.smalltalk .hljs-localvars,
|
||||||
.smalltalk .hljs-array,
|
.smalltalk .hljs-array,
|
||||||
.css .hljs-rules .hljs-value,
|
.css .hljs-rules .hljs-value,
|
||||||
.hljs-attr_selector,
|
.hljs-attr_selector,
|
||||||
.hljs-pseudo,
|
.hljs-pseudo,
|
||||||
.apache .hljs-cbracket,
|
.apache .hljs-cbracket,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.coffeescript .hljs-attribute {
|
.coffeescript .hljs-attribute {
|
||||||
color: #CC9393;
|
color: #CC9393;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-shebang,
|
.hljs-shebang,
|
||||||
.diff .hljs-addition,
|
.diff .hljs-addition,
|
||||||
.hljs-comment,
|
.hljs-comment,
|
||||||
.java .hljs-annotation,
|
.java .hljs-annotation,
|
||||||
.hljs-template_comment,
|
.hljs-template_comment,
|
||||||
.hljs-pi,
|
.hljs-pi,
|
||||||
.hljs-doctype {
|
.hljs-doctype {
|
||||||
color: #7F9F7F;
|
color: #7F9F7F;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coffeescript .javascript,
|
.coffeescript .javascript,
|
||||||
.javascript .xml,
|
.javascript .xml,
|
||||||
.tex .hljs-formula,
|
.tex .hljs-formula,
|
||||||
.xml .javascript,
|
.xml .javascript,
|
||||||
.xml .vbscript,
|
.xml .vbscript,
|
||||||
.xml .css,
|
.xml .css,
|
||||||
.xml .hljs-cdata {
|
.xml .hljs-cdata {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,20 +1,20 @@
|
|||||||
/**
|
/**
|
||||||
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.cke_colordialog_colorcell {
|
.cke_colordialog_colorcell {
|
||||||
width: 12px; /* All cells have equal width which depends on parent width (in this case table parent). Width works more like max-width. */
|
width: 12px; /* All cells have equal width which depends on parent width (in this case table parent). Width works more like max-width. */
|
||||||
height: 14px;
|
height: 14px;
|
||||||
padding: 1px; /* Padding is replaced by border for focused cells. Prevents 'jumping' when adding borders. */
|
padding: 1px; /* Padding is replaced by border for focused cells. Prevents 'jumping' when adding borders. */
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_colordialog_colorcell.cke_colordialog_focused_light,
|
.cke_colordialog_colorcell.cke_colordialog_focused_light,
|
||||||
.cke_colordialog_colorcell.cke_colordialog_focused_dark {
|
.cke_colordialog_colorcell.cke_colordialog_focused_dark {
|
||||||
padding: 0; /* Shrink cell to allow 1px border indicating focus. */
|
padding: 0; /* Shrink cell to allow 1px border indicating focus. */
|
||||||
border: 1px dotted #000;
|
border: 1px dotted #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_colordialog_colorcell.cke_colordialog_focused_dark {
|
.cke_colordialog_colorcell.cke_colordialog_focused_dark {
|
||||||
border-color: #FFF;
|
border-color: #FFF;
|
||||||
}
|
}
|
||||||
|
|||||||
+45
-45
@@ -1,45 +1,45 @@
|
|||||||
/*
|
/*
|
||||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
html.cke_copyformatting_active {
|
html.cke_copyformatting_active {
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* There is no cursor in CUR format for IE/Edge as that browser
|
/* There is no cursor in CUR format for IE/Edge as that browser
|
||||||
does not support custom cursor in [contenteditable] area.
|
does not support custom cursor in [contenteditable] area.
|
||||||
Ticket for this issue:
|
Ticket for this issue:
|
||||||
https://connect.microsoft.com/IE/feedback/details/1070215/cant-change-cursor-in-contenteditable-using-css */
|
https://connect.microsoft.com/IE/feedback/details/1070215/cant-change-cursor-in-contenteditable-using-css */
|
||||||
.cke_copyformatting_disabled,
|
.cke_copyformatting_disabled,
|
||||||
.cke_copyformatting_disabled a,
|
.cke_copyformatting_disabled a,
|
||||||
.cke_copyformatting_disabled .cke_editable {
|
.cke_copyformatting_disabled .cke_editable {
|
||||||
cursor: url(../cursors/cursor-disabled.svg) 12 1, auto;
|
cursor: url(../cursors/cursor-disabled.svg) 12 1, auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_copyformatting_disabled .cke_top a,
|
.cke_copyformatting_disabled .cke_top a,
|
||||||
.cke_copyformatting_disabled .cke_bottom a {
|
.cke_copyformatting_disabled .cke_bottom a {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Added `!important` rule as a fix for overriding the cursor by the Table Resize plugin.
|
/* Added `!important` rule as a fix for overriding the cursor by the Table Resize plugin.
|
||||||
The `!important` rule is used because the Table Resize plugin creates a `<div>` which changes the cursor using inlined styles. */
|
The `!important` rule is used because the Table Resize plugin creates a `<div>` which changes the cursor using inlined styles. */
|
||||||
.cke_copyformatting_active,
|
.cke_copyformatting_active,
|
||||||
.cke_copyformatting_active.cke_editable,
|
.cke_copyformatting_active.cke_editable,
|
||||||
.cke_copyformatting_active .cke_editable,
|
.cke_copyformatting_active .cke_editable,
|
||||||
.cke_copyformatting_active a,
|
.cke_copyformatting_active a,
|
||||||
.cke_copyformatting_active table,
|
.cke_copyformatting_active table,
|
||||||
.cke_copyformatting_active div[data-cke-temp],
|
.cke_copyformatting_active div[data-cke-temp],
|
||||||
.cke_copyformatting_tableresize_cursor div[data-cke-temp] {
|
.cke_copyformatting_tableresize_cursor div[data-cke-temp] {
|
||||||
cursor: url(../cursors/cursor.svg) 12 1, auto !important;
|
cursor: url(../cursors/cursor.svg) 12 1, auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_screen_reader_only {
|
.cke_screen_reader_only {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
clip: rect(1px, 1px, 1px, 1px);
|
clip: rect(1px, 1px, 1px, 1px);
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,27 +1,27 @@
|
|||||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||||
|
|
||||||
bg.js Found: 5 Missing: 0
|
bg.js Found: 5 Missing: 0
|
||||||
cs.js Found: 5 Missing: 0
|
cs.js Found: 5 Missing: 0
|
||||||
cy.js Found: 5 Missing: 0
|
cy.js Found: 5 Missing: 0
|
||||||
da.js Found: 5 Missing: 0
|
da.js Found: 5 Missing: 0
|
||||||
de.js Found: 5 Missing: 0
|
de.js Found: 5 Missing: 0
|
||||||
el.js Found: 5 Missing: 0
|
el.js Found: 5 Missing: 0
|
||||||
eo.js Found: 5 Missing: 0
|
eo.js Found: 5 Missing: 0
|
||||||
et.js Found: 5 Missing: 0
|
et.js Found: 5 Missing: 0
|
||||||
fa.js Found: 5 Missing: 0
|
fa.js Found: 5 Missing: 0
|
||||||
fi.js Found: 5 Missing: 0
|
fi.js Found: 5 Missing: 0
|
||||||
fr.js Found: 5 Missing: 0
|
fr.js Found: 5 Missing: 0
|
||||||
gu.js Found: 5 Missing: 0
|
gu.js Found: 5 Missing: 0
|
||||||
he.js Found: 5 Missing: 0
|
he.js Found: 5 Missing: 0
|
||||||
hr.js Found: 5 Missing: 0
|
hr.js Found: 5 Missing: 0
|
||||||
it.js Found: 5 Missing: 0
|
it.js Found: 5 Missing: 0
|
||||||
nb.js Found: 5 Missing: 0
|
nb.js Found: 5 Missing: 0
|
||||||
nl.js Found: 5 Missing: 0
|
nl.js Found: 5 Missing: 0
|
||||||
no.js Found: 5 Missing: 0
|
no.js Found: 5 Missing: 0
|
||||||
pl.js Found: 5 Missing: 0
|
pl.js Found: 5 Missing: 0
|
||||||
tr.js Found: 5 Missing: 0
|
tr.js Found: 5 Missing: 0
|
||||||
ug.js Found: 5 Missing: 0
|
ug.js Found: 5 Missing: 0
|
||||||
uk.js Found: 5 Missing: 0
|
uk.js Found: 5 Missing: 0
|
||||||
vi.js Found: 5 Missing: 0
|
vi.js Found: 5 Missing: 0
|
||||||
zh-cn.js Found: 5 Missing: 0
|
zh-cn.js Found: 5 Missing: 0
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
<script>
|
<script>
|
||||||
|
|
||||||
// Prevent from DOM clobbering.
|
// Prevent from DOM clobbering.
|
||||||
if ( typeof window.opener._cke_htmlToLoad == 'string' ) {
|
if ( typeof window.opener._cke_htmlToLoad == 'string' ) {
|
||||||
var doc = document;
|
var doc = document;
|
||||||
doc.open();
|
doc.open();
|
||||||
doc.write( window.opener._cke_htmlToLoad );
|
doc.write( window.opener._cke_htmlToLoad );
|
||||||
doc.close();
|
doc.close();
|
||||||
|
|
||||||
delete window.opener._cke_htmlToLoad;
|
delete window.opener._cke_htmlToLoad;
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,20 +1,20 @@
|
|||||||
SCAYT plugin for CKEditor 4 Changelog
|
SCAYT plugin for CKEditor 4 Changelog
|
||||||
====================
|
====================
|
||||||
### CKEditor 4.5.6
|
### CKEditor 4.5.6
|
||||||
|
|
||||||
New Features:
|
New Features:
|
||||||
* CKEditor [language addon](http://ckeditor.com/addon/language) support
|
* CKEditor [language addon](http://ckeditor.com/addon/language) support
|
||||||
* CKEditor [placeholder addon](http://ckeditor.com/addon/placeholder) support
|
* CKEditor [placeholder addon](http://ckeditor.com/addon/placeholder) support
|
||||||
* Drag and Drop support
|
* Drag and Drop support
|
||||||
* *Experimental* GRAYT functionality http://www.webspellchecker.net/samples/scayt-ckeditor-plugin.html#25
|
* *Experimental* GRAYT functionality http://www.webspellchecker.net/samples/scayt-ckeditor-plugin.html#25
|
||||||
|
|
||||||
Fixed issues:
|
Fixed issues:
|
||||||
* [#98](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/98) SCAYT Affects Dialog Double Click. Fixed in SCAYT Core.
|
* [#98](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/98) SCAYT Affects Dialog Double Click. Fixed in SCAYT Core.
|
||||||
* [#102](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/102) SCAYT Core performance enhancements
|
* [#102](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/102) SCAYT Core performance enhancements
|
||||||
* [#104](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/104) SCAYT's spans leak into the clipboard and after pasting
|
* [#104](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/104) SCAYT's spans leak into the clipboard and after pasting
|
||||||
* [#105](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/105) Javascript error fired in case of multiple instances of CKEditor in one page
|
* [#105](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/105) Javascript error fired in case of multiple instances of CKEditor in one page
|
||||||
* [#107](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/107) SCAYT should not check non-editable parts of content
|
* [#107](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/107) SCAYT should not check non-editable parts of content
|
||||||
* [#108](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/108) Latest SCAYT copies id of editor element to the iframe
|
* [#108](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/108) Latest SCAYT copies id of editor element to the iframe
|
||||||
* SCAYT stops working when CKEditor Undo plug-in not enabled
|
* SCAYT stops working when CKEditor Undo plug-in not enabled
|
||||||
* Issue with pasting SCAYT markup in CKEditor
|
* Issue with pasting SCAYT markup in CKEditor
|
||||||
* [#32](https://github.com/WebSpellChecker/ckeditor-plugin-wsc/issues/32) SCAYT stops working after pressing Cancel button in WSC dialog
|
* [#32](https://github.com/WebSpellChecker/ckeditor-plugin-wsc/issues/32) SCAYT stops working after pressing Cancel button in WSC dialog
|
||||||
|
|||||||
@@ -1,28 +1,28 @@
|
|||||||
Software License Agreement
|
Software License Agreement
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
**CKEditor SCAYT Plugin**
|
**CKEditor SCAYT Plugin**
|
||||||
Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved.
|
Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved.
|
||||||
|
|
||||||
Licensed under the terms of any of the following licenses at your choice:
|
Licensed under the terms of any of the following licenses at your choice:
|
||||||
|
|
||||||
* GNU General Public License Version 2 or later (the "GPL"):
|
* GNU General Public License Version 2 or later (the "GPL"):
|
||||||
http://www.gnu.org/licenses/gpl.html
|
http://www.gnu.org/licenses/gpl.html
|
||||||
|
|
||||||
* GNU Lesser General Public License Version 2.1 or later (the "LGPL"):
|
* GNU Lesser General Public License Version 2.1 or later (the "LGPL"):
|
||||||
http://www.gnu.org/licenses/lgpl.html
|
http://www.gnu.org/licenses/lgpl.html
|
||||||
|
|
||||||
* Mozilla Public License Version 1.1 or later (the "MPL"):
|
* Mozilla Public License Version 1.1 or later (the "MPL"):
|
||||||
http://www.mozilla.org/MPL/MPL-1.1.html
|
http://www.mozilla.org/MPL/MPL-1.1.html
|
||||||
|
|
||||||
You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice.
|
You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice.
|
||||||
|
|
||||||
Sources of Intellectual Property Included in this plugin
|
Sources of Intellectual Property Included in this plugin
|
||||||
--------------------------------------------------------
|
--------------------------------------------------------
|
||||||
|
|
||||||
Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission.
|
Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission.
|
||||||
|
|
||||||
Trademarks
|
Trademarks
|
||||||
----------
|
----------
|
||||||
|
|
||||||
CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
|
CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
|
||||||
|
|||||||
@@ -1,71 +1,71 @@
|
|||||||
a
|
a
|
||||||
{
|
{
|
||||||
text-decoration:none;
|
text-decoration:none;
|
||||||
padding: 2px 4px 4px 6px;
|
padding: 2px 4px 4px 6px;
|
||||||
display : block;
|
display : block;
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.cke_scayt_toogle:hover,
|
a.cke_scayt_toogle:hover,
|
||||||
a.cke_scayt_toogle:focus,
|
a.cke_scayt_toogle:focus,
|
||||||
a.cke_scayt_toogle:active
|
a.cke_scayt_toogle:active
|
||||||
{
|
{
|
||||||
border-color: #316ac5;
|
border-color: #316ac5;
|
||||||
background-color: #dff1ff;
|
background-color: #dff1ff;
|
||||||
color : #000;
|
color : #000;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
}
|
}
|
||||||
a.cke_scayt_toogle {
|
a.cke_scayt_toogle {
|
||||||
color : #316ac5;
|
color : #316ac5;
|
||||||
border-color: #fff;
|
border-color: #fff;
|
||||||
}
|
}
|
||||||
.scayt_enabled a.cke_scayt_item {
|
.scayt_enabled a.cke_scayt_item {
|
||||||
color : #316ac5;
|
color : #316ac5;
|
||||||
border-color: #fff;
|
border-color: #fff;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
}
|
}
|
||||||
.scayt_disabled a.cke_scayt_item {
|
.scayt_disabled a.cke_scayt_item {
|
||||||
color : gray;
|
color : gray;
|
||||||
border-color : #fff;
|
border-color : #fff;
|
||||||
}
|
}
|
||||||
.scayt_enabled a.cke_scayt_item:hover,
|
.scayt_enabled a.cke_scayt_item:hover,
|
||||||
.scayt_enabled a.cke_scayt_item:focus,
|
.scayt_enabled a.cke_scayt_item:focus,
|
||||||
.scayt_enabled a.cke_scayt_item:active
|
.scayt_enabled a.cke_scayt_item:active
|
||||||
{
|
{
|
||||||
border-color: #316ac5;
|
border-color: #316ac5;
|
||||||
background-color: #dff1ff;
|
background-color: #dff1ff;
|
||||||
color : #000;
|
color : #000;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.scayt_disabled a.cke_scayt_item:hover,
|
.scayt_disabled a.cke_scayt_item:hover,
|
||||||
.scayt_disabled a.cke_scayt_item:focus,
|
.scayt_disabled a.cke_scayt_item:focus,
|
||||||
.scayt_disabled a.cke_scayt_item:active
|
.scayt_disabled a.cke_scayt_item:active
|
||||||
{
|
{
|
||||||
border-color: gray;
|
border-color: gray;
|
||||||
background-color: #dff1ff;
|
background-color: #dff1ff;
|
||||||
color : gray;
|
color : gray;
|
||||||
cursor: no-drop;
|
cursor: no-drop;
|
||||||
}
|
}
|
||||||
.cke_scayt_set_on, .cke_scayt_set_off
|
.cke_scayt_set_on, .cke_scayt_set_off
|
||||||
{
|
{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.scayt_enabled .cke_scayt_set_on
|
.scayt_enabled .cke_scayt_set_on
|
||||||
{
|
{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.scayt_disabled .cke_scayt_set_on
|
.scayt_disabled .cke_scayt_set_on
|
||||||
{
|
{
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
.scayt_disabled .cke_scayt_set_off
|
.scayt_disabled .cke_scayt_set_off
|
||||||
{
|
{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.scayt_enabled .cke_scayt_set_off
|
.scayt_enabled .cke_scayt_set_off
|
||||||
{
|
{
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,20 +1,20 @@
|
|||||||
.scayt-lang-list > div
|
.scayt-lang-list > div
|
||||||
{
|
{
|
||||||
padding-bottom: 6px !important;
|
padding-bottom: 6px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scayt-lang-list > div input
|
.scayt-lang-list > div input
|
||||||
{
|
{
|
||||||
margin-right: 4px;
|
margin-right: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#scayt_about_
|
#scayt_about_
|
||||||
{
|
{
|
||||||
width: 190px;
|
width: 190px;
|
||||||
margin: 30px auto 0 auto;
|
margin: 30px auto 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_dialog_contents_body div[name=dictionaries] .cke_dialog_ui_hbox_last > a.cke_dialog_ui_button
|
.cke_dialog_contents_body div[name=dictionaries] .cke_dialog_ui_hbox_last > a.cke_dialog_ui_button
|
||||||
{
|
{
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|||||||
+20
-20
@@ -1,20 +1,20 @@
|
|||||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||||
|
|
||||||
cs.js Found: 118 Missing: 0
|
cs.js Found: 118 Missing: 0
|
||||||
cy.js Found: 118 Missing: 0
|
cy.js Found: 118 Missing: 0
|
||||||
de.js Found: 118 Missing: 0
|
de.js Found: 118 Missing: 0
|
||||||
el.js Found: 16 Missing: 102
|
el.js Found: 16 Missing: 102
|
||||||
eo.js Found: 118 Missing: 0
|
eo.js Found: 118 Missing: 0
|
||||||
et.js Found: 31 Missing: 87
|
et.js Found: 31 Missing: 87
|
||||||
fa.js Found: 24 Missing: 94
|
fa.js Found: 24 Missing: 94
|
||||||
fi.js Found: 23 Missing: 95
|
fi.js Found: 23 Missing: 95
|
||||||
fr.js Found: 118 Missing: 0
|
fr.js Found: 118 Missing: 0
|
||||||
hr.js Found: 23 Missing: 95
|
hr.js Found: 23 Missing: 95
|
||||||
it.js Found: 118 Missing: 0
|
it.js Found: 118 Missing: 0
|
||||||
nb.js Found: 118 Missing: 0
|
nb.js Found: 118 Missing: 0
|
||||||
nl.js Found: 118 Missing: 0
|
nl.js Found: 118 Missing: 0
|
||||||
no.js Found: 118 Missing: 0
|
no.js Found: 118 Missing: 0
|
||||||
tr.js Found: 118 Missing: 0
|
tr.js Found: 118 Missing: 0
|
||||||
ug.js Found: 39 Missing: 79
|
ug.js Found: 39 Missing: 79
|
||||||
zh-cn.js Found: 118 Missing: 0
|
zh-cn.js Found: 118 Missing: 0
|
||||||
|
|||||||
@@ -1,84 +1,84 @@
|
|||||||
/*
|
/*
|
||||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.cke_tpl_list
|
.cke_tpl_list
|
||||||
{
|
{
|
||||||
border: #dcdcdc 2px solid;
|
border: #dcdcdc 2px solid;
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 220px;
|
height: 220px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_tpl_item
|
.cke_tpl_item
|
||||||
{
|
{
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
padding: 7px;
|
padding: 7px;
|
||||||
border: #eeeeee 1px solid;
|
border: #eeeeee 1px solid;
|
||||||
*width: 88%;
|
*width: 88%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_tpl_preview
|
.cke_tpl_preview
|
||||||
{
|
{
|
||||||
border-collapse: separate;
|
border-collapse: separate;
|
||||||
text-indent:0;
|
text-indent:0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.cke_tpl_preview td
|
.cke_tpl_preview td
|
||||||
{
|
{
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.cke_tpl_preview .cke_tpl_preview_img
|
.cke_tpl_preview .cke_tpl_preview_img
|
||||||
{
|
{
|
||||||
width: 100px;
|
width: 100px;
|
||||||
}
|
}
|
||||||
.cke_tpl_preview span
|
.cke_tpl_preview span
|
||||||
{
|
{
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_tpl_title
|
.cke_tpl_title
|
||||||
{
|
{
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_tpl_list a:hover .cke_tpl_item,
|
.cke_tpl_list a:hover .cke_tpl_item,
|
||||||
.cke_tpl_list a:focus .cke_tpl_item,
|
.cke_tpl_list a:focus .cke_tpl_item,
|
||||||
.cke_tpl_list a:active .cke_tpl_item
|
.cke_tpl_list a:active .cke_tpl_item
|
||||||
{
|
{
|
||||||
border: #ff9933 1px solid;
|
border: #ff9933 1px solid;
|
||||||
background-color: #fffacd;
|
background-color: #fffacd;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_tpl_list a:hover *,
|
.cke_tpl_list a:hover *,
|
||||||
.cke_tpl_list a:focus *,
|
.cke_tpl_list a:focus *,
|
||||||
.cke_tpl_list a:active *
|
.cke_tpl_list a:active *
|
||||||
{
|
{
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* IE Quirks contextual selectors children will not get :hover transition until
|
/* IE Quirks contextual selectors children will not get :hover transition until
|
||||||
the hover style of the link itself contains certain CSS declarations. */
|
the hover style of the link itself contains certain CSS declarations. */
|
||||||
.cke_browser_quirks .cke_tpl_list a:active,
|
.cke_browser_quirks .cke_tpl_list a:active,
|
||||||
.cke_browser_quirks .cke_tpl_list a:hover,
|
.cke_browser_quirks .cke_tpl_list a:hover,
|
||||||
.cke_browser_quirks .cke_tpl_list a:focus
|
.cke_browser_quirks .cke_tpl_list a:focus
|
||||||
{
|
{
|
||||||
background-position: 0 0;
|
background-position: 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_hc .cke_tpl_list a:hover .cke_tpl_item,
|
.cke_hc .cke_tpl_list a:hover .cke_tpl_item,
|
||||||
.cke_hc .cke_tpl_list a:focus .cke_tpl_item,
|
.cke_hc .cke_tpl_list a:focus .cke_tpl_item,
|
||||||
.cke_hc .cke_tpl_list a:active .cke_tpl_item
|
.cke_hc .cke_tpl_list a:active .cke_tpl_item
|
||||||
{
|
{
|
||||||
border-width: 3px;
|
border-width: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_tpl_empty, .cke_tpl_loading
|
.cke_tpl_empty, .cke_tpl_loading
|
||||||
{
|
{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,20 +1,20 @@
|
|||||||
/**
|
/**
|
||||||
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.cke_colordialog_colorcell {
|
.cke_colordialog_colorcell {
|
||||||
width: 12px; /* All cells have equal width which depends on parent width (in this case table parent). Width works more like max-width. */
|
width: 12px; /* All cells have equal width which depends on parent width (in this case table parent). Width works more like max-width. */
|
||||||
height: 14px;
|
height: 14px;
|
||||||
padding: 1px; /* Padding is replaced by border for focused cells. Prevents 'jumping' when adding borders. */
|
padding: 1px; /* Padding is replaced by border for focused cells. Prevents 'jumping' when adding borders. */
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_colordialog_colorcell.cke_colordialog_focused_light,
|
.cke_colordialog_colorcell.cke_colordialog_focused_light,
|
||||||
.cke_colordialog_colorcell.cke_colordialog_focused_dark {
|
.cke_colordialog_colorcell.cke_colordialog_focused_dark {
|
||||||
padding: 0; /* Shrink cell to allow 1px border indicating focus. */
|
padding: 0; /* Shrink cell to allow 1px border indicating focus. */
|
||||||
border: 1px dotted #000;
|
border: 1px dotted #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_colordialog_colorcell.cke_colordialog_focused_dark {
|
.cke_colordialog_colorcell.cke_colordialog_focused_dark {
|
||||||
border-color: #FFF;
|
border-color: #FFF;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,27 +1,27 @@
|
|||||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||||
|
|
||||||
bg.js Found: 4 Missing: 0
|
bg.js Found: 4 Missing: 0
|
||||||
cs.js Found: 4 Missing: 0
|
cs.js Found: 4 Missing: 0
|
||||||
cy.js Found: 4 Missing: 0
|
cy.js Found: 4 Missing: 0
|
||||||
da.js Found: 4 Missing: 0
|
da.js Found: 4 Missing: 0
|
||||||
de.js Found: 4 Missing: 0
|
de.js Found: 4 Missing: 0
|
||||||
el.js Found: 4 Missing: 0
|
el.js Found: 4 Missing: 0
|
||||||
eo.js Found: 4 Missing: 0
|
eo.js Found: 4 Missing: 0
|
||||||
et.js Found: 4 Missing: 0
|
et.js Found: 4 Missing: 0
|
||||||
fa.js Found: 4 Missing: 0
|
fa.js Found: 4 Missing: 0
|
||||||
fi.js Found: 4 Missing: 0
|
fi.js Found: 4 Missing: 0
|
||||||
fr.js Found: 4 Missing: 0
|
fr.js Found: 4 Missing: 0
|
||||||
he.js Found: 4 Missing: 0
|
he.js Found: 4 Missing: 0
|
||||||
hr.js Found: 4 Missing: 0
|
hr.js Found: 4 Missing: 0
|
||||||
it.js Found: 4 Missing: 0
|
it.js Found: 4 Missing: 0
|
||||||
mk.js Found: 4 Missing: 0
|
mk.js Found: 4 Missing: 0
|
||||||
nb.js Found: 4 Missing: 0
|
nb.js Found: 4 Missing: 0
|
||||||
nl.js Found: 4 Missing: 0
|
nl.js Found: 4 Missing: 0
|
||||||
no.js Found: 4 Missing: 0
|
no.js Found: 4 Missing: 0
|
||||||
pl.js Found: 4 Missing: 0
|
pl.js Found: 4 Missing: 0
|
||||||
tr.js Found: 4 Missing: 0
|
tr.js Found: 4 Missing: 0
|
||||||
ug.js Found: 4 Missing: 0
|
ug.js Found: 4 Missing: 0
|
||||||
uk.js Found: 4 Missing: 0
|
uk.js Found: 4 Missing: 0
|
||||||
vi.js Found: 4 Missing: 0
|
vi.js Found: 4 Missing: 0
|
||||||
zh-cn.js Found: 4 Missing: 0
|
zh-cn.js Found: 4 Missing: 0
|
||||||
|
|||||||
@@ -1,28 +1,28 @@
|
|||||||
Software License Agreement
|
Software License Agreement
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
**CKEditor WSC Plugin**
|
**CKEditor WSC Plugin**
|
||||||
Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved.
|
Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved.
|
||||||
|
|
||||||
Licensed under the terms of any of the following licenses at your choice:
|
Licensed under the terms of any of the following licenses at your choice:
|
||||||
|
|
||||||
* GNU General Public License Version 2 or later (the "GPL"):
|
* GNU General Public License Version 2 or later (the "GPL"):
|
||||||
http://www.gnu.org/licenses/gpl.html
|
http://www.gnu.org/licenses/gpl.html
|
||||||
|
|
||||||
* GNU Lesser General Public License Version 2.1 or later (the "LGPL"):
|
* GNU Lesser General Public License Version 2.1 or later (the "LGPL"):
|
||||||
http://www.gnu.org/licenses/lgpl.html
|
http://www.gnu.org/licenses/lgpl.html
|
||||||
|
|
||||||
* Mozilla Public License Version 1.1 or later (the "MPL"):
|
* Mozilla Public License Version 1.1 or later (the "MPL"):
|
||||||
http://www.mozilla.org/MPL/MPL-1.1.html
|
http://www.mozilla.org/MPL/MPL-1.1.html
|
||||||
|
|
||||||
You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice.
|
You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice.
|
||||||
|
|
||||||
Sources of Intellectual Property Included in this plugin
|
Sources of Intellectual Property Included in this plugin
|
||||||
--------------------------------------------------------
|
--------------------------------------------------------
|
||||||
|
|
||||||
Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission.
|
Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission.
|
||||||
|
|
||||||
Trademarks
|
Trademarks
|
||||||
----------
|
----------
|
||||||
|
|
||||||
CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
|
CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
|
||||||
|
|||||||
@@ -1,66 +1,66 @@
|
|||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||||
<!--
|
<!--
|
||||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||||
-->
|
-->
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title></title>
|
<title></title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
||||||
function gup( name )
|
function gup( name )
|
||||||
{
|
{
|
||||||
name = name.replace( /[\[]/, '\\\[' ).replace( /[\]]/, '\\\]' ) ;
|
name = name.replace( /[\[]/, '\\\[' ).replace( /[\]]/, '\\\]' ) ;
|
||||||
var regexS = '[\\?&]' + name + '=([^&#]*)' ;
|
var regexS = '[\\?&]' + name + '=([^&#]*)' ;
|
||||||
var regex = new RegExp( regexS ) ;
|
var regex = new RegExp( regexS ) ;
|
||||||
var results = regex.exec( window.location.href ) ;
|
var results = regex.exec( window.location.href ) ;
|
||||||
|
|
||||||
if ( results )
|
if ( results )
|
||||||
return results[ 1 ] ;
|
return results[ 1 ] ;
|
||||||
else
|
else
|
||||||
return '' ;
|
return '' ;
|
||||||
}
|
}
|
||||||
|
|
||||||
var interval;
|
var interval;
|
||||||
|
|
||||||
function sendData2Master()
|
function sendData2Master()
|
||||||
{
|
{
|
||||||
var destination = window.parent.parent ;
|
var destination = window.parent.parent ;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if ( destination.XDTMaster )
|
if ( destination.XDTMaster )
|
||||||
{
|
{
|
||||||
var t = destination.XDTMaster.read( [ gup( 'cmd' ), gup( 'data' ) ] ) ;
|
var t = destination.XDTMaster.read( [ gup( 'cmd' ), gup( 'data' ) ] ) ;
|
||||||
window.clearInterval( interval ) ;
|
window.clearInterval( interval ) ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (e) {}
|
catch (e) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
function OnMessage (event) {
|
function OnMessage (event) {
|
||||||
var message = event.data;
|
var message = event.data;
|
||||||
var destination = window.parent.parent;
|
var destination = window.parent.parent;
|
||||||
destination.XDTMaster.read( [ 'end', message, 'fpm' ] ) ;
|
destination.XDTMaster.read( [ 'end', message, 'fpm' ] ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
function listenPostMessage() {
|
function listenPostMessage() {
|
||||||
if (window.addEventListener) { // all browsers except IE before version 9
|
if (window.addEventListener) { // all browsers except IE before version 9
|
||||||
window.addEventListener ("message", OnMessage, false);
|
window.addEventListener ("message", OnMessage, false);
|
||||||
}else {
|
}else {
|
||||||
if (window.attachEvent) { // IE before version 9
|
if (window.attachEvent) { // IE before version 9
|
||||||
window.attachEvent("onmessage", OnMessage);
|
window.attachEvent("onmessage", OnMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function onLoad()
|
function onLoad()
|
||||||
{
|
{
|
||||||
interval = window.setInterval( sendData2Master, 100 );
|
interval = window.setInterval( sendData2Master, 100 );
|
||||||
listenPostMessage();
|
listenPostMessage();
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body onload="onLoad()"><p></p></body>
|
<body onload="onLoad()"><p></p></body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,52 +1,52 @@
|
|||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
|
||||||
<!--
|
<!--
|
||||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||||
-->
|
-->
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title></title>
|
<title></title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
||||||
function doLoadScript( url )
|
function doLoadScript( url )
|
||||||
{
|
{
|
||||||
if ( !url )
|
if ( !url )
|
||||||
return false ;
|
return false ;
|
||||||
|
|
||||||
var s = document.createElement( "script" ) ;
|
var s = document.createElement( "script" ) ;
|
||||||
s.type = "text/javascript" ;
|
s.type = "text/javascript" ;
|
||||||
s.src = url ;
|
s.src = url ;
|
||||||
document.getElementsByTagName( "head" )[ 0 ].appendChild( s ) ;
|
document.getElementsByTagName( "head" )[ 0 ].appendChild( s ) ;
|
||||||
|
|
||||||
return true ;
|
return true ;
|
||||||
}
|
}
|
||||||
|
|
||||||
var opener;
|
var opener;
|
||||||
function tryLoad()
|
function tryLoad()
|
||||||
{
|
{
|
||||||
opener = window.parent;
|
opener = window.parent;
|
||||||
|
|
||||||
// get access to global parameters
|
// get access to global parameters
|
||||||
var oParams = window.opener.oldFramesetPageParams;
|
var oParams = window.opener.oldFramesetPageParams;
|
||||||
|
|
||||||
// make frameset rows string prepare
|
// make frameset rows string prepare
|
||||||
var sFramesetRows = ( parseInt( oParams.firstframeh, 10 ) || '30') + ",*," + ( parseInt( oParams.thirdframeh, 10 ) || '150' ) + ',0' ;
|
var sFramesetRows = ( parseInt( oParams.firstframeh, 10 ) || '30') + ",*," + ( parseInt( oParams.thirdframeh, 10 ) || '150' ) + ',0' ;
|
||||||
document.getElementById( 'itFrameset' ).rows = sFramesetRows ;
|
document.getElementById( 'itFrameset' ).rows = sFramesetRows ;
|
||||||
|
|
||||||
// dynamic including init frames and crossdomain transport code
|
// dynamic including init frames and crossdomain transport code
|
||||||
// from config sproxy_js_frameset url
|
// from config sproxy_js_frameset url
|
||||||
var addScriptUrl = oParams.sproxy_js_frameset ;
|
var addScriptUrl = oParams.sproxy_js_frameset ;
|
||||||
doLoadScript( addScriptUrl ) ;
|
doLoadScript( addScriptUrl ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<frameset id="itFrameset" onload="tryLoad();" border="0" rows="30,*,*,0">
|
<frameset id="itFrameset" onload="tryLoad();" border="0" rows="30,*,*,0">
|
||||||
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="2" src="" name="navbar"></frame>
|
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="2" src="" name="navbar"></frame>
|
||||||
<frame scrolling="auto" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="0" src="" name="mid"></frame>
|
<frame scrolling="auto" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="0" src="" name="mid"></frame>
|
||||||
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="bot"></frame>
|
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="bot"></frame>
|
||||||
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="spellsuggestall"></frame>
|
<frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="spellsuggestall"></frame>
|
||||||
</frameset>
|
</frameset>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,82 +1,82 @@
|
|||||||
/*
|
/*
|
||||||
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
|
||||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
html, body
|
html, body
|
||||||
{
|
{
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
body
|
body
|
||||||
{
|
{
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
body, td, input, select, textarea
|
body, td, input, select, textarea
|
||||||
{
|
{
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
|
font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
|
||||||
}
|
}
|
||||||
|
|
||||||
.midtext
|
.midtext
|
||||||
{
|
{
|
||||||
padding:0px;
|
padding:0px;
|
||||||
margin:10px;
|
margin:10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.midtext p
|
.midtext p
|
||||||
{
|
{
|
||||||
padding:0px;
|
padding:0px;
|
||||||
margin:10px;
|
margin:10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.Button
|
.Button
|
||||||
{
|
{
|
||||||
border: #737357 1px solid;
|
border: #737357 1px solid;
|
||||||
color: #3b3b1f;
|
color: #3b3b1f;
|
||||||
background-color: #c7c78f;
|
background-color: #c7c78f;
|
||||||
}
|
}
|
||||||
|
|
||||||
.PopupTabArea
|
.PopupTabArea
|
||||||
{
|
{
|
||||||
color: #737357;
|
color: #737357;
|
||||||
background-color: #e3e3c7;
|
background-color: #e3e3c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.PopupTitleBorder
|
.PopupTitleBorder
|
||||||
{
|
{
|
||||||
border-bottom: #d5d59d 1px solid;
|
border-bottom: #d5d59d 1px solid;
|
||||||
}
|
}
|
||||||
.PopupTabEmptyArea
|
.PopupTabEmptyArea
|
||||||
{
|
{
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
border-bottom: #d5d59d 1px solid;
|
border-bottom: #d5d59d 1px solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
.PopupTab, .PopupTabSelected
|
.PopupTab, .PopupTabSelected
|
||||||
{
|
{
|
||||||
border-right: #d5d59d 1px solid;
|
border-right: #d5d59d 1px solid;
|
||||||
border-top: #d5d59d 1px solid;
|
border-top: #d5d59d 1px solid;
|
||||||
border-left: #d5d59d 1px solid;
|
border-left: #d5d59d 1px solid;
|
||||||
padding: 3px 5px 3px 5px;
|
padding: 3px 5px 3px 5px;
|
||||||
color: #737357;
|
color: #737357;
|
||||||
}
|
}
|
||||||
|
|
||||||
.PopupTab
|
.PopupTab
|
||||||
{
|
{
|
||||||
margin-top: 1px;
|
margin-top: 1px;
|
||||||
border-bottom: #d5d59d 1px solid;
|
border-bottom: #d5d59d 1px solid;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.PopupTabSelected
|
.PopupTabSelected
|
||||||
{
|
{
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
padding-top: 4px;
|
padding-top: 4px;
|
||||||
border-bottom: #f1f1e3 1px solid;
|
border-bottom: #f1f1e3 1px solid;
|
||||||
background-color: #f1f1e3;
|
background-color: #f1f1e3;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,43 +1,43 @@
|
|||||||
.cke_dialog_body #overlayBlock,
|
.cke_dialog_body #overlayBlock,
|
||||||
.cke_dialog_body #no_check_over
|
.cke_dialog_body #no_check_over
|
||||||
{
|
{
|
||||||
top: 39px !important;
|
top: 39px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_vbox td > .cke_dialog_ui_button:first-child
|
div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_vbox td > .cke_dialog_ui_button:first-child
|
||||||
{
|
{
|
||||||
margin-top: 4px;
|
margin-top: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select > label
|
div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select > label
|
||||||
{
|
{
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select div.cke_dialog_ui_input_select
|
div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select div.cke_dialog_ui_input_select
|
||||||
{
|
{
|
||||||
width: 140px !important;
|
width: 140px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select select.cke_dialog_ui_input_select,
|
div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select select.cke_dialog_ui_input_select,
|
||||||
div[name=Thesaurus] div.cke_dialog_ui_input_select select.cke_dialog_ui_input_select
|
div[name=Thesaurus] div.cke_dialog_ui_input_select select.cke_dialog_ui_input_select
|
||||||
{
|
{
|
||||||
margin-top: 1px;
|
margin-top: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select select.cke_dialog_ui_input_select:focus,
|
div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select select.cke_dialog_ui_input_select:focus,
|
||||||
div[name=Thesaurus] div.cke_dialog_ui_input_select select.cke_dialog_ui_input_select:focus
|
div[name=Thesaurus] div.cke_dialog_ui_input_select select.cke_dialog_ui_input_select:focus
|
||||||
{
|
{
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div[name=GrammTab] .cke_dialog_ui_vbox tbody > tr:first-child .cke_dialog_ui_button,
|
div[name=GrammTab] .cke_dialog_ui_vbox tbody > tr:first-child .cke_dialog_ui_button,
|
||||||
div[name=Thesaurus] .cke_dialog_ui_vbox tbody > tr:first-child .cke_dialog_ui_button
|
div[name=Thesaurus] .cke_dialog_ui_vbox tbody > tr:first-child .cke_dialog_ui_button
|
||||||
{
|
{
|
||||||
margin-top: 4px !important;
|
margin-top: 4px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
div[name=Thesaurus] div.cke_dialog_ui_input_select
|
div[name=Thesaurus] div.cke_dialog_ui_input_select
|
||||||
{
|
{
|
||||||
width: 180px !important;
|
width: 180px !important;
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,38 +1,38 @@
|
|||||||
"Kama" Skin
|
"Kama" Skin
|
||||||
====================
|
====================
|
||||||
|
|
||||||
"Kama" is the default skin of CKEditor 3.x.
|
"Kama" is the default skin of CKEditor 3.x.
|
||||||
It's been ported to CKEditor 4 and fully featured.
|
It's been ported to CKEditor 4 and fully featured.
|
||||||
|
|
||||||
For more information about skins, please check the [CKEditor Skin SDK](http://docs.cksource.com/CKEditor_4.x/Skin_SDK)
|
For more information about skins, please check the [CKEditor Skin SDK](http://docs.cksource.com/CKEditor_4.x/Skin_SDK)
|
||||||
documentation.
|
documentation.
|
||||||
|
|
||||||
Directory Structure
|
Directory Structure
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
CSS parts:
|
CSS parts:
|
||||||
- **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance,
|
- **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance,
|
||||||
- **mainui.css**: the file contains styles of entire editor outline structures,
|
- **mainui.css**: the file contains styles of entire editor outline structures,
|
||||||
- **toolbar.css**: the file contains styles of the editor toolbar space (top),
|
- **toolbar.css**: the file contains styles of the editor toolbar space (top),
|
||||||
- **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar,
|
- **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar,
|
||||||
- **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded
|
- **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded
|
||||||
until the first panel open up,
|
until the first panel open up,
|
||||||
- **elementspath.css**: the file contains styles of the editor elements path bar (bottom),
|
- **elementspath.css**: the file contains styles of the editor elements path bar (bottom),
|
||||||
- **menu.css**: the file contains styles of all editor menus including context menu and button drop-down,
|
- **menu.css**: the file contains styles of all editor menus including context menu and button drop-down,
|
||||||
it's not loaded until the first menu open up,
|
it's not loaded until the first menu open up,
|
||||||
- **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open,
|
- **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open,
|
||||||
- **reset.css**: the file defines the basis of style resets among all editor UI spaces,
|
- **reset.css**: the file defines the basis of style resets among all editor UI spaces,
|
||||||
- **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference,
|
- **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference,
|
||||||
- **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks.
|
- **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks.
|
||||||
|
|
||||||
Other parts:
|
Other parts:
|
||||||
- **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature,
|
- **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature,
|
||||||
- **icons/**: contains all skin defined icons,
|
- **icons/**: contains all skin defined icons,
|
||||||
- **images/**: contains a fill general used images.
|
- **images/**: contains a fill general used images.
|
||||||
|
|
||||||
License
|
License
|
||||||
-------
|
-------
|
||||||
|
|
||||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
|
|
||||||
For licensing, see LICENSE.md or [http://ckeditor.com/license](http://ckeditor.com/license)
|
For licensing, see LICENSE.md or [http://ckeditor.com/license](http://ckeditor.com/license)
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,46 +1,46 @@
|
|||||||
"Moono-lisa" Skin
|
"Moono-lisa" Skin
|
||||||
=================
|
=================
|
||||||
|
|
||||||
This skin has been made a **default skin** starting from CKEditor 4.6.0 and is maintained by the core developers.
|
This skin has been made a **default skin** starting from CKEditor 4.6.0 and is maintained by the core developers.
|
||||||
|
|
||||||
For more information about skins, please check the [CKEditor Skin SDK](http://docs.cksource.com/CKEditor_4.x/Skin_SDK)
|
For more information about skins, please check the [CKEditor Skin SDK](http://docs.cksource.com/CKEditor_4.x/Skin_SDK)
|
||||||
documentation.
|
documentation.
|
||||||
|
|
||||||
Features
|
Features
|
||||||
-------------------
|
-------------------
|
||||||
"Moono-lisa" is a monochromatic skin, which offers a modern, flat and minimalistic look which blends very well in modern design.
|
"Moono-lisa" is a monochromatic skin, which offers a modern, flat and minimalistic look which blends very well in modern design.
|
||||||
It comes with the following features:
|
It comes with the following features:
|
||||||
|
|
||||||
- Chameleon feature with brightness.
|
- Chameleon feature with brightness.
|
||||||
- High-contrast compatibility.
|
- High-contrast compatibility.
|
||||||
- Graphics source provided in SVG.
|
- Graphics source provided in SVG.
|
||||||
|
|
||||||
Directory Structure
|
Directory Structure
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
CSS parts:
|
CSS parts:
|
||||||
- **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance,
|
- **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance,
|
||||||
- **mainui.css**: the file contains styles of entire editor outline structures,
|
- **mainui.css**: the file contains styles of entire editor outline structures,
|
||||||
- **toolbar.css**: the file contains styles of the editor toolbar space (top),
|
- **toolbar.css**: the file contains styles of the editor toolbar space (top),
|
||||||
- **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar,
|
- **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar,
|
||||||
- **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded
|
- **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded
|
||||||
until the first panel open up,
|
until the first panel open up,
|
||||||
- **elementspath.css**: the file contains styles of the editor elements path bar (bottom),
|
- **elementspath.css**: the file contains styles of the editor elements path bar (bottom),
|
||||||
- **menu.css**: the file contains styles of all editor menus including context menu and button drop-down,
|
- **menu.css**: the file contains styles of all editor menus including context menu and button drop-down,
|
||||||
it's not loaded until the first menu open up,
|
it's not loaded until the first menu open up,
|
||||||
- **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open,
|
- **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open,
|
||||||
- **reset.css**: the file defines the basis of style resets among all editor UI spaces,
|
- **reset.css**: the file defines the basis of style resets among all editor UI spaces,
|
||||||
- **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference,
|
- **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference,
|
||||||
- **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks.
|
- **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks.
|
||||||
|
|
||||||
Other parts:
|
Other parts:
|
||||||
- **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature,
|
- **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature,
|
||||||
- **images/**: contains a fill general used images,
|
- **images/**: contains a fill general used images,
|
||||||
- **dev/**: contains SVG and PNG source of the skin icons.
|
- **dev/**: contains SVG and PNG source of the skin icons.
|
||||||
|
|
||||||
License
|
License
|
||||||
-------
|
-------
|
||||||
|
|
||||||
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
||||||
|
|
||||||
For licensing, see LICENSE.md or [http://ckeditor.com/license](http://ckeditor.com/license)
|
For licensing, see LICENSE.md or [http://ckeditor.com/license](http://ckeditor.com/license)
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user