mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
Merge branch 'rails_update' into dev
This commit is contained in:
commit
f1e16713b7
@ -45,6 +45,7 @@ provision
|
||||
Dockerfile
|
||||
docker-compose*
|
||||
test
|
||||
.env
|
||||
|
||||
# Docs
|
||||
*.md
|
||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -24,6 +24,7 @@
|
||||
# Ignore application configurations
|
||||
/config/application.yml
|
||||
/config/database.yml
|
||||
.env
|
||||
|
||||
*.DS_Store
|
||||
.idea
|
||||
|
@ -3,9 +3,12 @@
|
||||
- Docker build will no longer embed development dependencies
|
||||
- Updated instructions to setup a development environment
|
||||
- Updated translations
|
||||
- Removed `MESSAGEFORMAT_LOCALE` as it is now handled by make-plural
|
||||
- Updated angular-translate
|
||||
- Updated eslint
|
||||
- Updated compass-rails & compass-core
|
||||
- Renamed production documentation
|
||||
- Syntax improvements in scss files
|
||||
- Fix a bug: invalid translation keys in closing accounting period interface
|
||||
- Fix a bug: since PostgreSQL release 9.6.17, the new installations will fail to start complaining for missing password (#194)
|
||||
- Fix a bug: missing translations for some error messages
|
||||
|
45
Gemfile
45
Gemfile
@ -1,12 +1,18 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
source 'https://rubygems.org'
|
||||
|
||||
gem 'compass-rails', '2.0.4'
|
||||
git 'https://github.com/judynjagi/compass.git', branch: 'stable' do
|
||||
gem 'compass-core'
|
||||
end
|
||||
|
||||
gem 'compass-rails', '3.1.0'
|
||||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
||||
gem 'rails', '4.2.11.1'
|
||||
gem 'rails', '~> 5.1.7'
|
||||
# Use Puma as web server
|
||||
gem 'puma', '3.12.4'
|
||||
# Use SCSS for stylesheets
|
||||
gem 'sass-rails', '5.0.1'
|
||||
gem 'sass-rails', '~> 5.0', '>= 5.0.6'
|
||||
|
||||
# Use Uglifier as compressor for JavaScript assets
|
||||
gem 'uglifier', '>= 4.1.20'
|
||||
@ -28,36 +34,32 @@ group :development, :test do
|
||||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
||||
# comment over to use visual debugger (eg. RubyMine), uncomment to use manual debugging
|
||||
# gem 'byebug'
|
||||
|
||||
# Access an IRB console on exception pages or by using <%= console %> in views
|
||||
gem 'web-console', '~> 2.1.3'
|
||||
|
||||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
||||
gem 'spring'
|
||||
|
||||
gem 'railroady'
|
||||
|
||||
gem 'rubocop', '~> 0.61.1', require: false
|
||||
gem 'dotenv-rails'
|
||||
end
|
||||
|
||||
group :development do
|
||||
# Access an IRB console on exception pages or by using <%= console %> in views
|
||||
gem 'active_record_query_trace'
|
||||
gem 'awesome_print'
|
||||
gem 'coveralls', require: false
|
||||
gem 'foreman'
|
||||
gem 'web-console', '>= 3.3.0'
|
||||
# Preview mail in the browser
|
||||
gem 'mailcatcher'
|
||||
gem 'listen', '~> 3.0.5'
|
||||
gem 'rb-readline'
|
||||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
||||
gem 'railroady'
|
||||
gem 'rubocop', '~> 0.61.1', require: false
|
||||
gem 'spring'
|
||||
gem 'spring-watcher-listen', '~> 2.0.0'
|
||||
end
|
||||
|
||||
group :test do
|
||||
gem 'byebug'
|
||||
gem 'database_cleaner'
|
||||
gem 'faker'
|
||||
gem 'minitest-reporters'
|
||||
gem 'pdf-reader'
|
||||
gem 'test_after_commit'
|
||||
gem 'vcr'
|
||||
gem 'vcr', '3.0.1'
|
||||
gem 'webmock'
|
||||
end
|
||||
|
||||
@ -79,8 +81,6 @@ gem 'rolify'
|
||||
|
||||
gem 'kaminari'
|
||||
|
||||
gem 'figaro'
|
||||
|
||||
gem 'bootstrap-sass', '>= 3.4.1'
|
||||
gem 'font-awesome-rails'
|
||||
|
||||
@ -120,14 +120,11 @@ gem 'pundit'
|
||||
|
||||
gem 'oj'
|
||||
|
||||
gem 'actionpack-page_caching'
|
||||
gem 'actionpack-page_caching', '1.1.0'
|
||||
gem 'rails-observers'
|
||||
|
||||
gem 'chroma'
|
||||
|
||||
|
||||
gem 'protected_attributes'
|
||||
|
||||
gem 'message_format'
|
||||
|
||||
gem 'openlab_ruby'
|
||||
@ -141,8 +138,6 @@ gem 'caxlsx'
|
||||
gem 'caxlsx_rails'
|
||||
gem 'rubyzip', '>= 1.3.0'
|
||||
|
||||
gem 'rack-protection', '1.5.5'
|
||||
|
||||
# get free disk space
|
||||
gem 'sys-filesystem'
|
||||
|
||||
|
504
Gemfile.lock
504
Gemfile.lock
@ -1,70 +1,90 @@
|
||||
GIT
|
||||
remote: https://github.com/judynjagi/compass.git
|
||||
revision: 1692c0a7fd8ada392ad5f524bef756ab74e300d0
|
||||
branch: stable
|
||||
specs:
|
||||
compass (1.0.3)
|
||||
chunky_png (~> 1.2)
|
||||
compass-core (~> 1.0.2)
|
||||
compass-import-once (~> 1.0.5)
|
||||
rb-fsevent (>= 0.9.3)
|
||||
rb-inotify (>= 0.9)
|
||||
sass (>= 3.3.13, < 3.5)
|
||||
compass-core (1.0.2)
|
||||
multi_json (~> 1.0)
|
||||
sass (>= 3.3.0, < 3.5)
|
||||
compass-import-once (1.0.5)
|
||||
sass (>= 3.2, < 3.5)
|
||||
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
Ascii85 (1.0.2)
|
||||
aasm (4.1.0)
|
||||
actionmailer (4.2.11.1)
|
||||
actionpack (= 4.2.11.1)
|
||||
actionview (= 4.2.11.1)
|
||||
activejob (= 4.2.11.1)
|
||||
Ascii85 (1.0.3)
|
||||
aasm (5.0.8)
|
||||
concurrent-ruby (~> 1.0)
|
||||
actioncable (5.1.7)
|
||||
actionpack (= 5.1.7)
|
||||
nio4r (~> 2.0)
|
||||
websocket-driver (~> 0.6.1)
|
||||
actionmailer (5.1.7)
|
||||
actionpack (= 5.1.7)
|
||||
actionview (= 5.1.7)
|
||||
activejob (= 5.1.7)
|
||||
mail (~> 2.5, >= 2.5.4)
|
||||
rails-dom-testing (~> 1.0, >= 1.0.5)
|
||||
actionpack (4.2.11.1)
|
||||
actionview (= 4.2.11.1)
|
||||
activesupport (= 4.2.11.1)
|
||||
rack (~> 1.6)
|
||||
rack-test (~> 0.6.2)
|
||||
rails-dom-testing (~> 1.0, >= 1.0.5)
|
||||
rails-dom-testing (~> 2.0)
|
||||
actionpack (5.1.7)
|
||||
actionview (= 5.1.7)
|
||||
activesupport (= 5.1.7)
|
||||
rack (~> 2.0)
|
||||
rack-test (>= 0.6.3)
|
||||
rails-dom-testing (~> 2.0)
|
||||
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
||||
actionpack-page_caching (1.0.2)
|
||||
actionpack (>= 4.0.0, < 5)
|
||||
actionview (4.2.11.1)
|
||||
activesupport (= 4.2.11.1)
|
||||
actionpack-page_caching (1.1.0)
|
||||
actionpack (>= 4.0.0, < 6)
|
||||
actionview (5.1.7)
|
||||
activesupport (= 5.1.7)
|
||||
builder (~> 3.1)
|
||||
erubis (~> 2.7.0)
|
||||
rails-dom-testing (~> 1.0, >= 1.0.5)
|
||||
erubi (~> 1.4)
|
||||
rails-dom-testing (~> 2.0)
|
||||
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
||||
active_record_query_trace (1.4)
|
||||
activejob (4.2.11.1)
|
||||
activesupport (= 4.2.11.1)
|
||||
globalid (>= 0.3.0)
|
||||
activemodel (4.2.11.1)
|
||||
activesupport (= 4.2.11.1)
|
||||
builder (~> 3.1)
|
||||
activerecord (4.2.11.1)
|
||||
activemodel (= 4.2.11.1)
|
||||
activesupport (= 4.2.11.1)
|
||||
arel (~> 6.0)
|
||||
activesupport (4.2.11.1)
|
||||
i18n (~> 0.7)
|
||||
active_record_query_trace (1.7)
|
||||
activejob (5.1.7)
|
||||
activesupport (= 5.1.7)
|
||||
globalid (>= 0.3.6)
|
||||
activemodel (5.1.7)
|
||||
activesupport (= 5.1.7)
|
||||
activerecord (5.1.7)
|
||||
activemodel (= 5.1.7)
|
||||
activesupport (= 5.1.7)
|
||||
arel (~> 8.0)
|
||||
activesupport (5.1.7)
|
||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||
i18n (>= 0.7, < 2)
|
||||
minitest (~> 5.1)
|
||||
thread_safe (~> 0.3, >= 0.3.4)
|
||||
tzinfo (~> 1.1)
|
||||
addressable (2.5.2)
|
||||
public_suffix (>= 2.0.2, < 4.0)
|
||||
addressable (2.7.0)
|
||||
public_suffix (>= 2.0.2, < 5.0)
|
||||
afm (0.2.2)
|
||||
ansi (1.5.0)
|
||||
api-pagination (4.3.0)
|
||||
apipie-rails (0.3.6)
|
||||
json
|
||||
arel (6.0.4)
|
||||
api-pagination (4.8.2)
|
||||
apipie-rails (0.5.17)
|
||||
rails (>= 4.1)
|
||||
arel (8.0.0)
|
||||
ast (2.4.0)
|
||||
autoprefixer-rails (9.4.9)
|
||||
autoprefixer-rails (9.7.4)
|
||||
execjs
|
||||
awesome_print (1.6.1)
|
||||
awesome_print (1.8.0)
|
||||
axiom-types (0.1.1)
|
||||
descendants_tracker (~> 0.0.4)
|
||||
ice_nine (~> 0.11.0)
|
||||
thread_safe (~> 0.3, >= 0.3.1)
|
||||
bcrypt (3.1.13)
|
||||
binding_of_caller (0.7.3)
|
||||
debug_inspector (>= 0.0.1)
|
||||
bindex (0.8.1)
|
||||
bootstrap-sass (3.4.1)
|
||||
autoprefixer-rails (>= 5.2.1)
|
||||
sassc (>= 2.0.0)
|
||||
builder (3.2.3)
|
||||
byebug (8.2.3)
|
||||
camertron-eprun (1.1.0)
|
||||
builder (3.2.4)
|
||||
camertron-eprun (1.1.1)
|
||||
carrierwave (0.10.0)
|
||||
activemodel (>= 3.2.0)
|
||||
activesupport (>= 3.2.0)
|
||||
@ -78,41 +98,27 @@ GEM
|
||||
caxlsx_rails (0.6.2)
|
||||
actionpack (>= 3.1)
|
||||
caxlsx (>= 3.0)
|
||||
chroma (0.0.1)
|
||||
chunky_png (1.3.4)
|
||||
chroma (0.2.0)
|
||||
chunky_png (1.3.11)
|
||||
cldr-plurals-runtime-rb (1.0.1)
|
||||
coercible (1.0.0)
|
||||
descendants_tracker (~> 0.0.1)
|
||||
compass (1.0.3)
|
||||
chunky_png (~> 1.2)
|
||||
compass-core (~> 1.0.2)
|
||||
compass-import-once (~> 1.0.5)
|
||||
rb-fsevent (>= 0.9.3)
|
||||
rb-inotify (>= 0.9)
|
||||
sass (>= 3.3.13, < 3.5)
|
||||
compass-core (1.0.3)
|
||||
multi_json (~> 1.0)
|
||||
sass (>= 3.3.0, < 3.5)
|
||||
compass-import-once (1.0.5)
|
||||
sass (>= 3.2, < 3.5)
|
||||
compass-rails (2.0.4)
|
||||
compass-rails (3.1.0)
|
||||
compass (~> 1.0.0)
|
||||
sass-rails (<= 5.0.1)
|
||||
sprockets (< 2.13)
|
||||
concurrent-ruby (1.1.5)
|
||||
sass-rails (< 5.1)
|
||||
sprockets (< 4.0)
|
||||
concurrent-ruby (1.1.6)
|
||||
connection_pool (2.2.2)
|
||||
coveralls (0.8.16)
|
||||
coveralls (0.8.23)
|
||||
json (>= 1.8, < 3)
|
||||
simplecov (~> 0.12.0)
|
||||
term-ansicolor (~> 1.3.0)
|
||||
thor (~> 0.19.1)
|
||||
tins (>= 1.6.0, < 2)
|
||||
simplecov (~> 0.16.1)
|
||||
term-ansicolor (~> 1.3)
|
||||
thor (>= 0.19.4, < 2.0)
|
||||
tins (~> 1.6)
|
||||
crack (0.4.3)
|
||||
safe_yaml (~> 1.0.0)
|
||||
crass (1.0.5)
|
||||
daemons (1.2.4)
|
||||
database_cleaner (1.4.1)
|
||||
debug_inspector (0.0.3)
|
||||
crass (1.0.6)
|
||||
database_cleaner (1.8.3)
|
||||
descendants_tracker (0.0.4)
|
||||
thread_safe (~> 0.3, >= 0.3.1)
|
||||
devise (4.7.1)
|
||||
@ -121,13 +127,17 @@ GEM
|
||||
railties (>= 4.1.0)
|
||||
responders
|
||||
warden (~> 1.2.3)
|
||||
docile (1.1.5)
|
||||
docile (1.3.2)
|
||||
dotenv (2.7.5)
|
||||
dotenv-rails (2.7.5)
|
||||
dotenv (= 2.7.5)
|
||||
railties (>= 3.2, < 6.1)
|
||||
elasticsearch (5.0.5)
|
||||
elasticsearch-api (= 5.0.5)
|
||||
elasticsearch-transport (= 5.0.5)
|
||||
elasticsearch-api (5.0.5)
|
||||
multi_json
|
||||
elasticsearch-model (5.0.2)
|
||||
elasticsearch-model (5.1.0)
|
||||
activesupport (> 3)
|
||||
elasticsearch (~> 5)
|
||||
hashie
|
||||
@ -138,28 +148,24 @@ GEM
|
||||
elasticsearch-model (~> 5)
|
||||
hashie
|
||||
virtus
|
||||
elasticsearch-rails (5.0.2)
|
||||
elasticsearch-rails (5.1.0)
|
||||
elasticsearch-transport (5.0.5)
|
||||
faraday
|
||||
multi_json
|
||||
equalizer (0.0.11)
|
||||
erubis (2.7.0)
|
||||
erubi (1.9.0)
|
||||
et-orbi (1.2.1)
|
||||
tzinfo
|
||||
eventmachine (1.0.9.1)
|
||||
execjs (2.7.0)
|
||||
faker (1.4.3)
|
||||
i18n (~> 0.5)
|
||||
faraday (0.17.0)
|
||||
faker (2.10.2)
|
||||
i18n (>= 1.6, < 2)
|
||||
faraday (1.0.0)
|
||||
multipart-post (>= 1.2, < 3)
|
||||
ffi (1.9.24)
|
||||
figaro (1.1.0)
|
||||
thor (~> 0.14)
|
||||
font-awesome-rails (4.6.3.0)
|
||||
railties (>= 3.2, < 5.1)
|
||||
foreman (0.78.0)
|
||||
thor (~> 0.19.1)
|
||||
forgery (0.6.0)
|
||||
ffi (1.12.2)
|
||||
font-awesome-rails (4.7.0.5)
|
||||
railties (>= 3.2, < 6.1)
|
||||
foreman (0.87.0)
|
||||
forgery (0.7.0)
|
||||
friendly_id (5.1.0)
|
||||
activerecord (>= 4.0.0)
|
||||
fugit (1.3.1)
|
||||
@ -169,58 +175,63 @@ GEM
|
||||
activesupport (>= 4.2.0)
|
||||
has_secure_token (1.0.0)
|
||||
activerecord (>= 3.0)
|
||||
hashdiff (0.3.0)
|
||||
hashdiff (1.0.1)
|
||||
hashery (2.1.2)
|
||||
hashie (3.6.0)
|
||||
hike (1.2.3)
|
||||
hashie (4.1.0)
|
||||
htmlentities (4.3.4)
|
||||
httparty (0.13.7)
|
||||
json (~> 1.8)
|
||||
httparty (0.18.0)
|
||||
mime-types (~> 3.0)
|
||||
multi_xml (>= 0.5.2)
|
||||
i18n (0.9.5)
|
||||
i18n (1.8.2)
|
||||
concurrent-ruby (~> 1.0)
|
||||
icalendar (2.5.3)
|
||||
ice_cube (~> 0.16)
|
||||
ice_cube (0.16.3)
|
||||
ice_nine (0.11.2)
|
||||
jaro_winkler (1.5.1)
|
||||
jbuilder (2.5.0)
|
||||
activesupport (>= 3.0.0, < 5.1)
|
||||
multi_json (~> 1.2)
|
||||
jbuilder_cache_multi (0.0.3)
|
||||
jaro_winkler (1.5.4)
|
||||
jbuilder (2.10.0)
|
||||
activesupport (>= 5.0.0)
|
||||
jbuilder_cache_multi (0.1.0)
|
||||
jbuilder (>= 1.5.0, < 3)
|
||||
jquery-rails (4.3.1)
|
||||
jquery-rails (4.3.5)
|
||||
rails-dom-testing (>= 1, < 3)
|
||||
railties (>= 4.2.0)
|
||||
thor (>= 0.14, < 2.0)
|
||||
json (1.8.6)
|
||||
jwt (2.2.1)
|
||||
kaminari (0.16.3)
|
||||
actionpack (>= 3.0.0)
|
||||
activesupport (>= 3.0.0)
|
||||
kaminari (1.2.0)
|
||||
activesupport (>= 4.1.0)
|
||||
kaminari-actionview (= 1.2.0)
|
||||
kaminari-activerecord (= 1.2.0)
|
||||
kaminari-core (= 1.2.0)
|
||||
kaminari-actionview (1.2.0)
|
||||
actionview
|
||||
kaminari-core (= 1.2.0)
|
||||
kaminari-activerecord (1.2.0)
|
||||
activerecord
|
||||
kaminari-core (= 1.2.0)
|
||||
kaminari-core (1.2.0)
|
||||
libv8 (3.16.14.19)
|
||||
loofah (2.3.1)
|
||||
listen (3.0.8)
|
||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||
rb-inotify (~> 0.9, >= 0.9.7)
|
||||
loofah (2.4.0)
|
||||
crass (~> 1.0.2)
|
||||
nokogiri (>= 1.5.9)
|
||||
mail (2.7.1)
|
||||
mini_mime (>= 0.1.1)
|
||||
mailcatcher (0.6.5)
|
||||
eventmachine (= 1.0.9.1)
|
||||
mail (~> 2.3)
|
||||
rack (~> 1.5)
|
||||
sinatra (~> 1.2)
|
||||
skinny (~> 0.2.3)
|
||||
sqlite3 (~> 1.3)
|
||||
thin (~> 1.5.0)
|
||||
message_format (0.0.3)
|
||||
twitter_cldr (~> 3.1)
|
||||
mime-types (2.99.3)
|
||||
message_format (0.0.6)
|
||||
twitter_cldr (~> 5.0)
|
||||
method_source (0.9.2)
|
||||
mime-types (3.3.1)
|
||||
mime-types-data (~> 3.2015)
|
||||
mime-types-data (3.2019.1009)
|
||||
mimemagic (0.3.4)
|
||||
mini_magick (4.9.4)
|
||||
mini_magick (4.10.1)
|
||||
mini_mime (1.0.2)
|
||||
mini_portile2 (2.4.0)
|
||||
minitest (5.12.2)
|
||||
minitest-reporters (1.1.8)
|
||||
minitest (5.14.0)
|
||||
minitest-reporters (1.4.2)
|
||||
ansi
|
||||
builder
|
||||
minitest (>= 5.0)
|
||||
@ -228,21 +239,24 @@ GEM
|
||||
multi_json (1.14.1)
|
||||
multi_xml (0.6.0)
|
||||
multipart-post (2.1.1)
|
||||
nokogiri (1.10.8)
|
||||
mustermann (1.1.1)
|
||||
ruby2_keywords (~> 0.0.1)
|
||||
nio4r (2.5.2)
|
||||
nokogiri (1.10.9)
|
||||
mini_portile2 (~> 2.4.0)
|
||||
notify_with (0.0.2)
|
||||
jbuilder (~> 2.0)
|
||||
rails (>= 4.2.0)
|
||||
responders (~> 2.0)
|
||||
oauth2 (1.4.2)
|
||||
oauth2 (1.4.4)
|
||||
faraday (>= 0.8, < 2.0)
|
||||
jwt (>= 1.0, < 3.0)
|
||||
multi_json (~> 1.3)
|
||||
multi_xml (~> 0.5)
|
||||
rack (>= 1.2, < 3)
|
||||
oj (2.12.8)
|
||||
omniauth (1.9.0)
|
||||
hashie (>= 3.4.6, < 3.7.0)
|
||||
oj (3.10.5)
|
||||
omniauth (1.9.1)
|
||||
hashie (>= 3.4.6)
|
||||
rack (>= 1.6.2, < 3)
|
||||
omniauth-oauth2 (1.6.0)
|
||||
oauth2 (~> 1.1)
|
||||
@ -253,71 +267,69 @@ GEM
|
||||
openlab_ruby (0.0.4)
|
||||
httparty (~> 0.13)
|
||||
orm_adapter (0.5.0)
|
||||
parallel (1.12.1)
|
||||
parser (2.5.3.0)
|
||||
parallel (1.19.1)
|
||||
parser (2.7.0.4)
|
||||
ast (~> 2.4.0)
|
||||
pdf-core (0.5.1)
|
||||
pdf-reader (1.4.0)
|
||||
pdf-core (0.7.0)
|
||||
pdf-reader (2.4.0)
|
||||
Ascii85 (~> 1.0.0)
|
||||
afm (~> 0.2.1)
|
||||
hashery (~> 2.0)
|
||||
ruby-rc4
|
||||
ttfunk
|
||||
pg (0.18.1)
|
||||
pg (1.2.2)
|
||||
powerpack (0.1.2)
|
||||
prawn (2.0.1)
|
||||
pdf-core (~> 0.5.1)
|
||||
ttfunk (~> 1.4.0)
|
||||
prawn-table (0.2.1)
|
||||
protected_attributes (1.1.3)
|
||||
activemodel (>= 4.0.1, < 5.0)
|
||||
public_suffix (3.0.2)
|
||||
prawn (2.2.2)
|
||||
pdf-core (~> 0.7.0)
|
||||
ttfunk (~> 1.5)
|
||||
prawn-table (0.2.2)
|
||||
prawn (>= 1.3.0, < 3.0.0)
|
||||
public_suffix (4.0.3)
|
||||
puma (3.12.4)
|
||||
pundit (1.0.0)
|
||||
pundit (2.1.0)
|
||||
activesupport (>= 3.0.0)
|
||||
raabro (1.1.6)
|
||||
rack (1.6.13)
|
||||
rack-protection (1.5.5)
|
||||
rack (2.2.2)
|
||||
rack-protection (2.0.8.1)
|
||||
rack
|
||||
rack-test (0.6.3)
|
||||
rack (>= 1.0)
|
||||
rack-test (1.1.0)
|
||||
rack (>= 1.0, < 3)
|
||||
railroady (1.5.3)
|
||||
rails (4.2.11.1)
|
||||
actionmailer (= 4.2.11.1)
|
||||
actionpack (= 4.2.11.1)
|
||||
actionview (= 4.2.11.1)
|
||||
activejob (= 4.2.11.1)
|
||||
activemodel (= 4.2.11.1)
|
||||
activerecord (= 4.2.11.1)
|
||||
activesupport (= 4.2.11.1)
|
||||
bundler (>= 1.3.0, < 2.0)
|
||||
railties (= 4.2.11.1)
|
||||
sprockets-rails
|
||||
rails-deprecated_sanitizer (1.0.3)
|
||||
activesupport (>= 4.2.0.alpha)
|
||||
rails-dom-testing (1.0.9)
|
||||
activesupport (>= 4.2.0, < 5.0)
|
||||
nokogiri (~> 1.6)
|
||||
rails-deprecated_sanitizer (>= 1.0.1)
|
||||
rails (5.1.7)
|
||||
actioncable (= 5.1.7)
|
||||
actionmailer (= 5.1.7)
|
||||
actionpack (= 5.1.7)
|
||||
actionview (= 5.1.7)
|
||||
activejob (= 5.1.7)
|
||||
activemodel (= 5.1.7)
|
||||
activerecord (= 5.1.7)
|
||||
activesupport (= 5.1.7)
|
||||
bundler (>= 1.3.0)
|
||||
railties (= 5.1.7)
|
||||
sprockets-rails (>= 2.0.0)
|
||||
rails-dom-testing (2.0.3)
|
||||
activesupport (>= 4.2.0)
|
||||
nokogiri (>= 1.6)
|
||||
rails-html-sanitizer (1.3.0)
|
||||
loofah (~> 2.3)
|
||||
rails-observers (0.1.2)
|
||||
activemodel (~> 4.0)
|
||||
rails-observers (0.1.5)
|
||||
activemodel (>= 4.0)
|
||||
rails_12factor (0.0.3)
|
||||
rails_serve_static_assets
|
||||
rails_stdout_logging
|
||||
rails_serve_static_assets (0.0.4)
|
||||
rails_stdout_logging (0.0.3)
|
||||
railties (4.2.11.1)
|
||||
actionpack (= 4.2.11.1)
|
||||
activesupport (= 4.2.11.1)
|
||||
rails_serve_static_assets (0.0.5)
|
||||
rails_stdout_logging (0.0.5)
|
||||
railties (5.1.7)
|
||||
actionpack (= 5.1.7)
|
||||
activesupport (= 5.1.7)
|
||||
method_source
|
||||
rake (>= 0.8.7)
|
||||
thor (>= 0.18.1, < 2.0)
|
||||
rainbow (3.0.0)
|
||||
rake (13.0.0)
|
||||
rb-fsevent (0.9.4)
|
||||
rb-inotify (0.9.5)
|
||||
ffi (>= 0.5.0)
|
||||
rake (13.0.1)
|
||||
rb-fsevent (0.10.3)
|
||||
rb-inotify (0.10.1)
|
||||
ffi (~> 1.0)
|
||||
rb-readline (0.5.5)
|
||||
rdoc (4.3.0)
|
||||
recurrence (1.3.0)
|
||||
@ -327,10 +339,11 @@ GEM
|
||||
redis-namespace (1.6.0)
|
||||
redis (>= 3.0.4)
|
||||
ref (2.0.0)
|
||||
repost (0.2.9)
|
||||
responders (2.1.0)
|
||||
railties (>= 4.2.0, < 5)
|
||||
rolify (4.0.0)
|
||||
repost (0.3.2)
|
||||
responders (2.4.1)
|
||||
actionpack (>= 4.2.0, < 6.0)
|
||||
railties (>= 4.2.0, < 6.0)
|
||||
rolify (5.2.0)
|
||||
rubocop (0.61.1)
|
||||
jaro_winkler (~> 1.5.1)
|
||||
parallel (~> 1.10)
|
||||
@ -339,130 +352,127 @@ GEM
|
||||
rainbow (>= 2.2.2, < 4.0)
|
||||
ruby-progressbar (~> 1.7)
|
||||
unicode-display_width (~> 1.4.0)
|
||||
ruby-progressbar (1.7.5)
|
||||
ruby-progressbar (1.10.1)
|
||||
ruby-rc4 (0.1.5)
|
||||
ruby2_keywords (0.0.2)
|
||||
rubyzip (1.3.0)
|
||||
safe_yaml (1.0.4)
|
||||
sass (3.4.13)
|
||||
sass-rails (5.0.1)
|
||||
railties (>= 4.0.0, < 5.0)
|
||||
safe_yaml (1.0.5)
|
||||
sass (3.4.25)
|
||||
sass-rails (5.0.7)
|
||||
railties (>= 4.0.0, < 6)
|
||||
sass (~> 3.1)
|
||||
sprockets (>= 2.8, < 4.0)
|
||||
sprockets-rails (>= 2.0, < 4.0)
|
||||
tilt (~> 1.1)
|
||||
sassc (2.0.0)
|
||||
ffi (~> 1.9.6)
|
||||
rake
|
||||
sdoc (0.4.1)
|
||||
tilt (>= 1.1, < 3)
|
||||
sassc (2.2.1)
|
||||
ffi (~> 1.9)
|
||||
sdoc (0.4.2)
|
||||
json (~> 1.7, >= 1.7.7)
|
||||
rdoc (~> 4.0)
|
||||
seed_dump (3.2.2)
|
||||
activerecord (~> 4)
|
||||
activesupport (~> 4)
|
||||
seed_dump (3.3.1)
|
||||
activerecord (>= 4)
|
||||
activesupport (>= 4)
|
||||
sha3 (1.0.1)
|
||||
sidekiq (5.2.8)
|
||||
sidekiq (5.2.7)
|
||||
connection_pool (~> 2.2, >= 2.2.2)
|
||||
rack (< 2.1.0)
|
||||
rack (>= 1.5.0)
|
||||
rack-protection (>= 1.5.0)
|
||||
redis (>= 3.3.5, < 5)
|
||||
sidekiq-cron (1.1.0)
|
||||
fugit (~> 1.1)
|
||||
sidekiq (>= 4.2.1)
|
||||
simplecov (0.12.0)
|
||||
docile (~> 1.1.0)
|
||||
simplecov (0.16.1)
|
||||
docile (~> 1.1)
|
||||
json (>= 1.8, < 3)
|
||||
simplecov-html (~> 0.10.0)
|
||||
simplecov-html (0.10.0)
|
||||
sinatra (1.4.6)
|
||||
rack (~> 1.4)
|
||||
rack-protection (~> 1.4)
|
||||
tilt (>= 1.3, < 3)
|
||||
skinny (0.2.4)
|
||||
eventmachine (~> 1.0.0)
|
||||
thin (>= 1.5, < 1.7)
|
||||
spring (1.3.5)
|
||||
sprockets (2.12.5)
|
||||
hike (~> 1.2)
|
||||
multi_json (~> 1.0)
|
||||
rack (~> 1.0)
|
||||
tilt (~> 1.1, != 1.3.0)
|
||||
sprockets-rails (2.3.3)
|
||||
actionpack (>= 3.0)
|
||||
activesupport (>= 3.0)
|
||||
sprockets (>= 2.8, < 4.0)
|
||||
sqlite3 (1.3.13)
|
||||
simplecov-html (0.10.2)
|
||||
sinatra (2.0.8.1)
|
||||
mustermann (~> 1.0)
|
||||
rack (~> 2.0)
|
||||
rack-protection (= 2.0.8.1)
|
||||
tilt (~> 2.0)
|
||||
spring (2.0.2)
|
||||
activesupport (>= 4.2)
|
||||
spring-watcher-listen (2.0.1)
|
||||
listen (>= 2.7, < 4.0)
|
||||
spring (>= 1.2, < 3.0)
|
||||
sprockets (3.7.2)
|
||||
concurrent-ruby (~> 1.0)
|
||||
rack (> 1, < 3)
|
||||
sprockets-rails (3.2.1)
|
||||
actionpack (>= 4.0)
|
||||
activesupport (>= 4.0)
|
||||
sprockets (>= 3.0.0)
|
||||
stripe (5.1.1)
|
||||
sys-filesystem (1.2.0)
|
||||
sync (0.5.0)
|
||||
sys-filesystem (1.3.3)
|
||||
ffi
|
||||
term-ansicolor (1.3.2)
|
||||
term-ansicolor (1.7.1)
|
||||
tins (~> 1.0)
|
||||
test_after_commit (1.0.0)
|
||||
activerecord (>= 3.2)
|
||||
therubyracer (0.12.0)
|
||||
libv8 (~> 3.16.14.0)
|
||||
ref
|
||||
thin (1.5.1)
|
||||
daemons (>= 1.0.9)
|
||||
eventmachine (>= 0.12.6)
|
||||
rack (>= 1.0.0)
|
||||
thor (0.19.4)
|
||||
thor (1.0.1)
|
||||
thread_safe (0.3.6)
|
||||
tilt (1.4.1)
|
||||
tins (1.13.0)
|
||||
ttfunk (1.4.0)
|
||||
twitter_cldr (3.2.1)
|
||||
tilt (2.0.10)
|
||||
tins (1.24.1)
|
||||
sync
|
||||
ttfunk (1.5.1)
|
||||
twitter_cldr (5.4.0)
|
||||
camertron-eprun
|
||||
cldr-plurals-runtime-rb (~> 1.0.0)
|
||||
json
|
||||
cldr-plurals-runtime-rb (~> 1.0)
|
||||
tzinfo
|
||||
tzinfo (1.2.5)
|
||||
tzinfo (1.2.6)
|
||||
thread_safe (~> 0.1)
|
||||
uglifier (4.1.20)
|
||||
uglifier (4.2.0)
|
||||
execjs (>= 0.3.0, < 3)
|
||||
unicode-display_width (1.4.0)
|
||||
unicode-display_width (1.4.1)
|
||||
vcr (3.0.1)
|
||||
virtus (1.0.5)
|
||||
axiom-types (~> 0.1)
|
||||
coercible (~> 1.0)
|
||||
descendants_tracker (~> 0.0, >= 0.0.3)
|
||||
equalizer (~> 0.0, >= 0.0.9)
|
||||
warden (1.2.7)
|
||||
rack (>= 1.0)
|
||||
web-console (2.1.3)
|
||||
activemodel (>= 4.0)
|
||||
binding_of_caller (>= 0.7.2)
|
||||
railties (>= 4.0)
|
||||
sprockets-rails (>= 2.0, < 4.0)
|
||||
webmock (1.24.2)
|
||||
warden (1.2.8)
|
||||
rack (>= 2.0.6)
|
||||
web-console (3.7.0)
|
||||
actionview (>= 5.0)
|
||||
activemodel (>= 5.0)
|
||||
bindex (>= 0.4.0)
|
||||
railties (>= 5.0)
|
||||
webmock (3.8.2)
|
||||
addressable (>= 2.3.6)
|
||||
crack (>= 0.3.2)
|
||||
hashdiff
|
||||
hashdiff (>= 0.4.0, < 2.0.0)
|
||||
websocket-driver (0.6.5)
|
||||
websocket-extensions (>= 0.1.0)
|
||||
websocket-extensions (0.1.4)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
aasm
|
||||
actionpack-page_caching
|
||||
actionpack-page_caching (= 1.1.0)
|
||||
active_record_query_trace
|
||||
api-pagination
|
||||
apipie-rails
|
||||
awesome_print
|
||||
bootstrap-sass (>= 3.4.1)
|
||||
byebug
|
||||
carrierwave
|
||||
caxlsx
|
||||
caxlsx_rails
|
||||
chroma
|
||||
compass-rails (= 2.0.4)
|
||||
compass-core!
|
||||
compass-rails (= 3.1.0)
|
||||
coveralls
|
||||
database_cleaner
|
||||
devise (>= 4.6.0)
|
||||
dotenv-rails
|
||||
elasticsearch-model (~> 5)
|
||||
elasticsearch-persistence (~> 5)
|
||||
elasticsearch-rails (~> 5)
|
||||
faker
|
||||
figaro
|
||||
font-awesome-rails
|
||||
foreman
|
||||
forgery
|
||||
@ -473,7 +483,7 @@ DEPENDENCIES
|
||||
jbuilder_cache_multi
|
||||
jquery-rails
|
||||
kaminari
|
||||
mailcatcher
|
||||
listen (~> 3.0.5)
|
||||
message_format
|
||||
mini_magick
|
||||
minitest-reporters
|
||||
@ -487,12 +497,10 @@ DEPENDENCIES
|
||||
pg
|
||||
prawn
|
||||
prawn-table
|
||||
protected_attributes
|
||||
puma (= 3.12.4)
|
||||
pundit
|
||||
rack-protection (= 1.5.5)
|
||||
railroady
|
||||
rails (= 4.2.11.1)
|
||||
rails (~> 5.1.7)
|
||||
rails-observers
|
||||
rails_12factor
|
||||
rb-readline
|
||||
@ -503,7 +511,7 @@ DEPENDENCIES
|
||||
rolify
|
||||
rubocop (~> 0.61.1)
|
||||
rubyzip (>= 1.3.0)
|
||||
sass-rails (= 5.0.1)
|
||||
sass-rails (~> 5.0, >= 5.0.6)
|
||||
sdoc (~> 0.4.0)
|
||||
seed_dump
|
||||
sha3
|
||||
@ -511,13 +519,13 @@ DEPENDENCIES
|
||||
sidekiq-cron
|
||||
sinatra
|
||||
spring
|
||||
spring-watcher-listen (~> 2.0.0)
|
||||
stripe (= 5.1.1)
|
||||
sys-filesystem
|
||||
test_after_commit
|
||||
therubyracer (= 0.12.0)
|
||||
uglifier (>= 4.1.20)
|
||||
vcr
|
||||
web-console (~> 2.1.3)
|
||||
vcr (= 3.0.1)
|
||||
web-console (>= 3.3.0)
|
||||
webmock
|
||||
|
||||
BUNDLED WITH
|
||||
|
4
Procfile
4
Procfile
@ -1,3 +1,3 @@
|
||||
web: bundle exec rails server puma -p $PORT -b0.0.0.0
|
||||
web: bundle exec rails server puma -p $PORT
|
||||
worker: bundle exec sidekiq -C ./config/sidekiq.yml
|
||||
mail: bundle exec mailcatcher --foreground --http-ip=0.0.0.0
|
||||
mail: node_modules/maildev/bin/maildev --ip 0.0.0.0
|
||||
|
@ -2,41 +2,54 @@
|
||||
html {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
body {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
.h1, .h2, .h3, .h4, .h5, .h6{
|
||||
.h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
h1, .page-title {
|
||||
line-height: rem-calc(24);
|
||||
text-transform: uppercase;
|
||||
font-weight: 900;
|
||||
line-height: rem-calc(24);
|
||||
text-transform: uppercase;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
h2 {
|
||||
//color: $red;
|
||||
line-height: rem-calc(24);
|
||||
font-weight: 900;
|
||||
//color: $red;
|
||||
line-height: rem-calc(24);
|
||||
font-weight: 900;
|
||||
}
|
||||
h3 { font-weight: 600; }
|
||||
h4 { font-weight: bold; }
|
||||
|
||||
h3 {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
h5 {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
line-height: rem-calc(18);
|
||||
//color: $red;
|
||||
font-size: rem-calc(16);
|
||||
&:after {
|
||||
position: absolute;
|
||||
top: 18px;
|
||||
left: 0;
|
||||
content: '';
|
||||
width: 35%;
|
||||
height: 1px;
|
||||
//background-color: $red;
|
||||
}
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
line-height: rem-calc(18);
|
||||
|
||||
//color: $red;
|
||||
font-size: rem-calc(16);
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
top: 18px;
|
||||
left: 0;
|
||||
content: '';
|
||||
width: 35%;
|
||||
height: 1px;
|
||||
|
||||
//background-color: $red;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// Links
|
||||
@ -46,78 +59,97 @@ a {
|
||||
//color: $link-color;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:focus {
|
||||
//color: $link-hover-color;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
label{ font-weight: 600; }
|
||||
small, .small{font-size: $font-size-sm;}
|
||||
label {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
pre { padding: 0; }
|
||||
small, .small {
|
||||
font-size: $font-size-sm;
|
||||
}
|
||||
|
||||
pre {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: rem-calc($font-size-base);
|
||||
line-height: rem-calc(24);
|
||||
font-size: rem-calc($font-size-base);
|
||||
line-height: rem-calc(24);
|
||||
|
||||
&.intro, .intro {
|
||||
font-size: rem-calc(16);
|
||||
line-height: rem-calc(24);
|
||||
margin: 1.038em 0 30px 0;
|
||||
}
|
||||
&.intro, .intro {
|
||||
font-size: rem-calc(16);
|
||||
line-height: rem-calc(24);
|
||||
margin: 1.038em 0 30px 0;
|
||||
}
|
||||
}
|
||||
|
||||
dt {
|
||||
color: $black-light;
|
||||
}
|
||||
|
||||
dd {
|
||||
color: $black-light;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// -------------------------
|
||||
|
||||
.col-0{clear:left;}
|
||||
.col-0 {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
.row.no-gutter{
|
||||
.row.no-gutter {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.no-gutter > [class*="col"]{
|
||||
.no-gutter > [class*="col"] {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* centered columns styles */
|
||||
.row-centered {
|
||||
text-align:center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.col-centered {
|
||||
display:inline-block;
|
||||
float:none;
|
||||
/* reset the text-align */
|
||||
text-align:left;
|
||||
/* inline-block space fix */
|
||||
margin-right:-4px;
|
||||
display: inline-block;
|
||||
float: none;
|
||||
|
||||
/* reset the text-align */
|
||||
text-align: left;
|
||||
|
||||
/* inline-block space fix */
|
||||
margin-right: -4px;
|
||||
}
|
||||
|
||||
::-webkit-input-placeholder {
|
||||
/* WebKit browsers */
|
||||
color: black;
|
||||
}
|
||||
|
||||
::-webkit-input-placeholder { /* WebKit browsers */
|
||||
color: black;
|
||||
:-moz-placeholder {
|
||||
/* Mozilla Firefox 4 to 18 */
|
||||
color: black;
|
||||
opacity: 1;
|
||||
}
|
||||
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
|
||||
color: black;
|
||||
opacity: 1;
|
||||
|
||||
::-moz-placeholder {
|
||||
/* Mozilla Firefox 19+ */
|
||||
color: black;
|
||||
opacity: 1;
|
||||
}
|
||||
::-moz-placeholder { /* Mozilla Firefox 19+ */
|
||||
color: black;
|
||||
opacity: 1;
|
||||
}
|
||||
:-ms-input-placeholder { /* Internet Explorer 10+ */
|
||||
color: black;
|
||||
|
||||
:-ms-input-placeholder {
|
||||
/* Internet Explorer 10+ */
|
||||
color: black;
|
||||
}
|
||||
|
||||
// .ng-hide-remove-active {
|
||||
@ -130,11 +162,13 @@ dd {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
@include transition(all .7s ease-in-out);
|
||||
|
||||
@include transition(all 0.7s ease-in-out);
|
||||
}
|
||||
|
||||
[ui-view].ng-enter {
|
||||
opacity: 0;
|
||||
|
||||
// -webkit-transform:scale3d(0.5, 0.5, 0.5);
|
||||
// -moz-transform:scale3d(0.5, 0.5, 0.5);
|
||||
// transform:scale3d(0.5, 0.5, 0.5);
|
||||
@ -142,6 +176,7 @@ dd {
|
||||
|
||||
[ui-view].ng-enter-active {
|
||||
opacity: 1;
|
||||
|
||||
// -webkit-transform:scale3d(1, 1, 1);
|
||||
// -moz-transform:scale3d(1, 1, 1);
|
||||
// transform:scale3d(1, 1, 1);
|
||||
@ -149,6 +184,7 @@ dd {
|
||||
|
||||
[ui-view].ng-leave {
|
||||
opacity: 1;
|
||||
|
||||
/*padding-left: 0px;*/
|
||||
// -webkit-transform:translate3d(0, 0, 0);
|
||||
// -moz-transform:translate3d(0, 0, 0);
|
||||
@ -157,6 +193,7 @@ dd {
|
||||
|
||||
[ui-view].ng-leave-active {
|
||||
opacity: 0;
|
||||
|
||||
/*padding-left: 100px;*/
|
||||
// -webkit-transform:translate3d(100px, 0, 0);
|
||||
// -moz-transform:translate3d(100px, 0, 0);
|
||||
|
@ -1,27 +1,25 @@
|
||||
|
||||
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
|
||||
|
||||
background-color: #f2f2f2;
|
||||
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
|
||||
.btn{
|
||||
> i{
|
||||
&.pull-left,
|
||||
&.pull-right{
|
||||
line-height: 1.428571429;
|
||||
}
|
||||
}
|
||||
.btn {
|
||||
> i {
|
||||
&.pull-left,
|
||||
&.pull-right {
|
||||
line-height: 1.428571429;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-warning-full {
|
||||
outline: 0;
|
||||
text-transform: uppercase;
|
||||
//border: 3px solid $yellow;
|
||||
//background-color: $yellow;
|
||||
&:hover {
|
||||
background-color: white;
|
||||
}
|
||||
outline: 0;
|
||||
text-transform: uppercase;
|
||||
|
||||
//border: 3px solid $yellow;
|
||||
//background-color: $yellow;
|
||||
&:hover {
|
||||
background-color: white;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-facebook {
|
||||
@ -48,23 +46,22 @@
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.btn-block {
|
||||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
.btn-group-vertical > .btn:first-child:not(:last-child){
|
||||
border-top-right-radius: $border-radius-base;
|
||||
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
||||
border-top-right-radius: $border-radius-base;
|
||||
}
|
||||
|
||||
.btn-group-vertical > .btn:last-child:not(:first-child){
|
||||
border-bottom-left-radius: $border-radius-base;
|
||||
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
||||
border-bottom-left-radius: $border-radius-base;
|
||||
}
|
||||
|
||||
.btn-inactive{
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
.btn-inactive {
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.btn-loading:after {
|
||||
@ -72,9 +69,9 @@
|
||||
display: inline-block;
|
||||
content: "\f110";
|
||||
font-family: FontAwesome;
|
||||
-webkit-animation:spin 4s linear infinite;
|
||||
-moz-animation:spin 4s linear infinite;
|
||||
animation:spin 4s linear infinite;
|
||||
-webkit-animation: spin 4s linear infinite;
|
||||
-moz-animation: spin 4s linear infinite;
|
||||
animation: spin 4s linear infinite;
|
||||
}
|
||||
|
||||
.btn-no-overflow {
|
||||
@ -84,6 +81,21 @@
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
|
||||
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
|
||||
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
|
||||
@-moz-keyframes spin {
|
||||
100% {
|
||||
-moz-transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes spin {
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
@ -1,49 +1,140 @@
|
||||
.bg-light {
|
||||
background-color: $brand-light;
|
||||
}
|
||||
|
||||
.bg-light { background-color: $brand-light; }
|
||||
//.bg-red { background-color: $red; color: white; }
|
||||
//.bg-red-dark { background-color: $red-dark; }
|
||||
//.bg-yellow { background-color: $yellow !important; }
|
||||
.bg-token { background-color: rgba(230, 208, 137, 0.49); }
|
||||
.bg-machine { background-color: $beige; }
|
||||
.bg-space { background-color: $cyan }
|
||||
.bg-formation { background-color: $violet; }
|
||||
.bg-event { background-color: $japonica; }
|
||||
.bg-atelier { background-color: $blue; }
|
||||
.bg-stage { background-color: $violet; }
|
||||
.bg-success { background-color: $brand-success; }
|
||||
.bg-info { background-color: $brand-info; }
|
||||
.border-machine { border-color: $beige !important; }
|
||||
.border-space { border-color: $cyan !important; }
|
||||
.border-formation { border-color: $violet !important; }
|
||||
.border-event { border-color: $japonica !important; }
|
||||
.bg-token {
|
||||
background-color: rgba(230, 208, 137, 0.49);
|
||||
}
|
||||
|
||||
.bg-black-light { background-color: #424242 !important; }
|
||||
.bg-machine {
|
||||
background-color: $beige;
|
||||
}
|
||||
|
||||
.bg-space {
|
||||
background-color: $cyan;
|
||||
}
|
||||
|
||||
.bg-formation {
|
||||
background-color: $violet;
|
||||
}
|
||||
|
||||
.bg-event {
|
||||
background-color: $japonica;
|
||||
}
|
||||
|
||||
.bg-atelier {
|
||||
background-color: $blue;
|
||||
}
|
||||
|
||||
.bg-stage {
|
||||
background-color: $violet;
|
||||
}
|
||||
|
||||
.bg-success {
|
||||
background-color: $brand-success;
|
||||
}
|
||||
|
||||
.bg-info {
|
||||
background-color: $brand-info;
|
||||
}
|
||||
|
||||
.border-machine {
|
||||
border-color: $beige !important;
|
||||
}
|
||||
|
||||
.border-space {
|
||||
border-color: $cyan !important;
|
||||
}
|
||||
|
||||
.border-formation {
|
||||
border-color: $violet !important;
|
||||
}
|
||||
|
||||
.border-event {
|
||||
border-color: $japonica !important;
|
||||
}
|
||||
|
||||
.bg-black-light {
|
||||
background-color: #424242 !important;
|
||||
}
|
||||
|
||||
.bg-white {
|
||||
background-color: #fff;
|
||||
color: $text-color;
|
||||
a {
|
||||
color: $link-color;
|
||||
&:hover{
|
||||
color: darken($link-color, 10%);
|
||||
}
|
||||
}
|
||||
.text-muted{color: $text-muted !important;}
|
||||
}
|
||||
.bg-white-only{background-color:#fff;}
|
||||
.bg-empty{background-color: transparent;}
|
||||
background-color: #fff;
|
||||
color: $text-color;
|
||||
|
||||
a {
|
||||
color: $link-color;
|
||||
|
||||
&:hover {
|
||||
color: darken($link-color, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
.text-muted {
|
||||
color: $text-muted !important;
|
||||
}
|
||||
}
|
||||
|
||||
.bg-white-only {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.bg-empty {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.text-black {
|
||||
color: #000 !important;
|
||||
}
|
||||
|
||||
.text-black-light {
|
||||
color: #424242 !important;
|
||||
}
|
||||
|
||||
.text-gray {
|
||||
color: #5a5a5a !important;
|
||||
}
|
||||
|
||||
.text-white {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
.text-black{ color: #000 !important; };
|
||||
.text-black-light { color: #424242 !important; }
|
||||
.text-gray { color: #5a5a5a !important; }
|
||||
.text-white { color: #fff !important; }
|
||||
//.text-yellow { color: $yellow !important; }
|
||||
.text-blue { color: $blue; }
|
||||
.text-muted { color: $text-muted; }
|
||||
.text-danger, .red { color: $red !important; }
|
||||
.text-red-only { color: $red !important; }
|
||||
.text-purple { color: $violet !important; }
|
||||
.text-japonica { color: $japonica !important; }
|
||||
.text-beige { color: $beige !important; }
|
||||
.text-cyan { color: $cyan !important; }
|
||||
.text-green, .green { color: #79C84A !important; }
|
||||
.text-blue {
|
||||
color: $blue;
|
||||
}
|
||||
|
||||
.text-muted {
|
||||
color: $text-muted;
|
||||
}
|
||||
|
||||
.text-danger, .red {
|
||||
color: $red !important;
|
||||
}
|
||||
|
||||
.text-red-only {
|
||||
color: $red !important;
|
||||
}
|
||||
|
||||
.text-purple {
|
||||
color: $violet !important;
|
||||
}
|
||||
|
||||
.text-japonica {
|
||||
color: $japonica !important;
|
||||
}
|
||||
|
||||
.text-beige {
|
||||
color: $beige !important;
|
||||
}
|
||||
|
||||
.text-cyan {
|
||||
color: $cyan !important;
|
||||
}
|
||||
|
||||
.text-green, .green {
|
||||
color: #79C84A !important;
|
||||
}
|
||||
|
@ -1,47 +1,60 @@
|
||||
.widget {
|
||||
|
||||
h1, h2, h3 {
|
||||
margin: 0;
|
||||
line-height: rem-calc(18);
|
||||
font-size: rem-calc(14);
|
||||
font-weight: 600;
|
||||
color: black;
|
||||
}
|
||||
h1 {
|
||||
font-size: rem-calc(16); text-transform: uppercase;
|
||||
h1, h2, h3 {
|
||||
margin: 0;
|
||||
line-height: rem-calc(18);
|
||||
font-size: rem-calc(14);
|
||||
font-weight: 600;
|
||||
color: black;
|
||||
}
|
||||
h2 { font-weight: bold; }
|
||||
//h3 { color: $red; }
|
||||
|
||||
h1 {
|
||||
font-size: rem-calc(16);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
//h3 { color: $red; }
|
||||
h4 {
|
||||
font-size: rem-calc(12);
|
||||
margin: 8px 0;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: rem-calc(14);
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
p { font-size: rem-calc(14); margin-top: 15px; }
|
||||
a {
|
||||
color: $black-light;
|
||||
|
||||
a {
|
||||
color: $black-light;
|
||||
&:hover { color: $red; }
|
||||
}
|
||||
.fa {
|
||||
// color: $red;
|
||||
}
|
||||
&:hover {
|
||||
color: $red;
|
||||
}
|
||||
}
|
||||
|
||||
.widget-content {
|
||||
font-size: rem-calc(14);
|
||||
}
|
||||
.fa {
|
||||
// color: $red;
|
||||
|
||||
}
|
||||
|
||||
.list-group-item {
|
||||
&.no-b {
|
||||
padding: 10px 15px;
|
||||
}
|
||||
}
|
||||
.widget-content {
|
||||
font-size: rem-calc(14);
|
||||
}
|
||||
|
||||
.list-group-item {
|
||||
&.no-b {
|
||||
padding: 10px 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//modal
|
||||
.modal-dialog { top: 90px; }
|
||||
.modal-dialog {
|
||||
top: 90px;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
.modal-logo {
|
||||
@ -52,12 +65,15 @@
|
||||
margin: 0 auto;
|
||||
max-height: 44px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 25px 0 20px 0;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
|
||||
//color: $red;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -90,16 +106,20 @@
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: rgba(43,46,56,0.8);
|
||||
background-color: rgba(43, 46, 56, 0.8);
|
||||
text-align: center;
|
||||
opacity: 0;
|
||||
-webkit-transition: all 0.1s ease-out;
|
||||
transition: all 0.1s ease-out;
|
||||
height: 180px;
|
||||
cursor: pointer;
|
||||
.btn-group { margin-top: 70px;}
|
||||
|
||||
.btn-group {
|
||||
margin-top: 70px;
|
||||
}
|
||||
|
||||
.btn {
|
||||
background: rgba(255,255,255,0.1);
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border: 1px solid #fff;
|
||||
color: #fff;
|
||||
}
|
||||
@ -115,6 +135,7 @@
|
||||
width: 100%;
|
||||
display: block;
|
||||
padding: 1.25rem;
|
||||
|
||||
.card-header-bg {
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
@ -122,8 +143,10 @@
|
||||
height: 180px;
|
||||
}
|
||||
}
|
||||
|
||||
.card-block {
|
||||
padding: 0 1.25rem 1.25rem 1.25rem;
|
||||
|
||||
.card-title {
|
||||
font-size: 1.5rem;
|
||||
line-height: 2rem;
|
||||
@ -131,10 +154,11 @@
|
||||
text-align: center;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.card-meta {
|
||||
font-size: 1.2rem;
|
||||
margin: 0;
|
||||
text-align: center
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -143,14 +167,20 @@
|
||||
max-width: $screen-md-min;
|
||||
margin: 0 auto;
|
||||
|
||||
h2, h3, h4, h5 { margin: 1.8em 0 1em 0; }
|
||||
h2, h3, h4, h5 {
|
||||
margin: 1.8em 0 1em 0;
|
||||
}
|
||||
|
||||
h2, h3 {
|
||||
color: $red;
|
||||
font-size: rem-calc(18);
|
||||
font-weight: bold;
|
||||
}
|
||||
h2 { text-transform: uppercase; }
|
||||
|
||||
h2 {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-weight: 600;
|
||||
font-size: rem-calc(16);
|
||||
@ -164,6 +194,7 @@
|
||||
max-height: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
@ -172,47 +203,63 @@
|
||||
}
|
||||
|
||||
.label-staging {
|
||||
position: absolute;
|
||||
top: 50px;
|
||||
position: absolute;
|
||||
top: 50px;
|
||||
}
|
||||
|
||||
.notification-open {
|
||||
a {
|
||||
position: relative;
|
||||
|
||||
.badge {
|
||||
position: absolute;
|
||||
top: 18px; right: 18px;
|
||||
top: 18px;
|
||||
right: 18px;
|
||||
padding: 3px 6px 1px 6px;
|
||||
}
|
||||
|
||||
.menu-badge {
|
||||
position: absolute;
|
||||
top: 0; right: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
padding: 2px 4px 1px 3px;
|
||||
border: 2px solid white;
|
||||
}
|
||||
}
|
||||
.fa { color: black; font-size: rem-calc(24); }
|
||||
}
|
||||
|
||||
.fa {
|
||||
color: black;
|
||||
font-size: rem-calc(24);
|
||||
}
|
||||
}
|
||||
|
||||
.panel {
|
||||
margin-bottom: 30px;
|
||||
|
||||
.panel-heading {
|
||||
&.small {
|
||||
padding: 15px 15px;
|
||||
}
|
||||
|
||||
&.picture {
|
||||
height: 250px;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
@include transition(opacity .5s ease);
|
||||
|
||||
@include transition(opacity 0.5s ease);
|
||||
|
||||
cursor: pointer;
|
||||
padding:0;
|
||||
img { @include border-radius(6px 6px 0 0); }
|
||||
padding: 0;
|
||||
|
||||
img {
|
||||
@include border-radius(6px 6px 0 0);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
|
||||
.align {
|
||||
position: relative;
|
||||
top: -7px;
|
||||
@ -225,32 +272,47 @@
|
||||
|
||||
&:first-child {
|
||||
border-right: none;
|
||||
|
||||
@include border-radius(3px 0 0 3px);
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
@include border-radius(0 3px 3px 0);
|
||||
}
|
||||
|
||||
.title {
|
||||
margin: 10px 0;
|
||||
font-size: rem-calc(16);
|
||||
text-transform: uppercase;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding: 15px 0;
|
||||
background-color: $bg-gray;
|
||||
|
||||
.wrap {
|
||||
width: 100px; height: 100px;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
display: inline-block;
|
||||
background: white;
|
||||
|
||||
@include border-radius(50%);
|
||||
border: 3px solid;// $yellow;
|
||||
|
||||
border: 3px solid;
|
||||
|
||||
// $yellow;
|
||||
|
||||
}
|
||||
|
||||
.price {
|
||||
position: relative;
|
||||
top: 5px; left: 5px;
|
||||
height: 84px; width: 84px;
|
||||
top: 5px;
|
||||
left: 5px;
|
||||
height: 84px;
|
||||
width: 84px;
|
||||
background-color: black;
|
||||
|
||||
@include border-radius(50%);
|
||||
|
||||
.amount {
|
||||
@ -261,6 +323,7 @@
|
||||
font-size: rem-calc(18);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.period {
|
||||
position: relative;
|
||||
top: -6px;
|
||||
@ -269,8 +332,10 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cta-button {
|
||||
margin: 20px 0;
|
||||
|
||||
.btn {
|
||||
outline: 0;
|
||||
font-weight: 600;
|
||||
@ -278,7 +343,9 @@
|
||||
background-color: white;
|
||||
padding-left: 30px;
|
||||
padding-right: 30px;
|
||||
|
||||
//&:hover { background-color: $yellow; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -288,8 +355,10 @@
|
||||
//border-color: #ffdc4e;
|
||||
//background-color: #ffdc4e;
|
||||
@include border-radius(3px);
|
||||
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
&.well-disabled {
|
||||
border-color: $gray-lighter;
|
||||
background-color: $gray-lighter;
|
||||
@ -310,25 +379,29 @@
|
||||
}
|
||||
}
|
||||
|
||||
.avatar{
|
||||
.avatar {
|
||||
position: relative;
|
||||
display: block;
|
||||
border-radius: 500px;
|
||||
white-space: nowrap;
|
||||
|
||||
&.avatar-block {
|
||||
white-space: inherit;
|
||||
height: 76px;
|
||||
|
||||
.user-name {
|
||||
display: block;
|
||||
font-size: rem-calc(14);
|
||||
line-height: rem-calc(14);
|
||||
}
|
||||
}
|
||||
img{
|
||||
|
||||
img {
|
||||
border-radius: 500px;
|
||||
width: 100%;
|
||||
}
|
||||
i{
|
||||
|
||||
i {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
@ -337,31 +410,38 @@
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border-radius: 100%;
|
||||
&.md{
|
||||
|
||||
&.md {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
margin: 1px;
|
||||
}
|
||||
&.right{
|
||||
|
||||
&.right {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
&.bottom{
|
||||
|
||||
&.bottom {
|
||||
left: auto;
|
||||
top: auto;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
}
|
||||
&.on{
|
||||
|
||||
&.on {
|
||||
background-color: $brand-success;
|
||||
}
|
||||
&.off{
|
||||
|
||||
&.off {
|
||||
background-color: $text-muted;
|
||||
}
|
||||
&.busy{
|
||||
|
||||
&.busy {
|
||||
background-color: $brand-danger;
|
||||
}
|
||||
&.away{
|
||||
|
||||
&.away {
|
||||
background-color: $brand-warning;
|
||||
}
|
||||
}
|
||||
@ -369,6 +449,7 @@
|
||||
|
||||
.block-link {
|
||||
cursor: pointer;
|
||||
|
||||
//&:hover { background-color: $yellow; }
|
||||
}
|
||||
|
||||
@ -381,7 +462,11 @@
|
||||
font-size: rem-calc(26);
|
||||
padding: 0px 10px 0px 11px;
|
||||
vertical-align: bottom;
|
||||
&.label-icon { font-size: rem-calc(22); padding: 4px 9px 1px 10px; }
|
||||
|
||||
&.label-icon {
|
||||
font-size: rem-calc(22);
|
||||
padding: 4px 9px 1px 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -390,8 +475,10 @@
|
||||
z-index: 101;
|
||||
height: 93%;
|
||||
background-color: white;
|
||||
@include transition(.5s linear all);
|
||||
opacity:1;
|
||||
|
||||
@include transition(0.5s linear all);
|
||||
|
||||
opacity: 1;
|
||||
|
||||
.about-picture {
|
||||
padding: 70px 0;
|
||||
@ -399,18 +486,23 @@
|
||||
background-size: cover;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.about-title, .about-title p {
|
||||
margin: 0;
|
||||
font-size: rem-calc(50);
|
||||
line-height: rem-calc(48);
|
||||
color: #fff;
|
||||
font-weight: 900; //black
|
||||
font-weight: 900;
|
||||
|
||||
//black
|
||||
|
||||
}
|
||||
|
||||
.about-title-aside {
|
||||
margin-top: 0;
|
||||
font-size: rem-calc(18);
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: rem-calc(18);
|
||||
line-height: rem-calc(30);
|
||||
@ -420,20 +512,19 @@
|
||||
|
||||
&.ng-hide {
|
||||
opacity: 0;
|
||||
@include transition(.5s linear all);
|
||||
|
||||
@include transition(0.5s linear all);
|
||||
}
|
||||
|
||||
&.ng-hide-add,
|
||||
&.ng-hide-remove {
|
||||
display:block!important;
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
|
||||
.last-update {
|
||||
text-align: right;
|
||||
margin-bottom: 2em;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.event {
|
||||
@ -446,7 +537,6 @@
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
||||
.event:hover * {
|
||||
color: #eee !important;
|
||||
border-color: #eee;
|
||||
@ -460,12 +550,13 @@
|
||||
.half-w {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.b-light-dark {
|
||||
border-color: #d0d0d0;
|
||||
border-color: #d0d0d0;
|
||||
}
|
||||
|
||||
.p-sm {
|
||||
padding: 10px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.crop-155 {
|
||||
@ -496,24 +587,26 @@ padding: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// angular-bootstrap accordions (enlightened version)
|
||||
.light-accordion > .panel-heading {
|
||||
padding-top: 0.2em;
|
||||
padding-bottom: 0.2em;
|
||||
}
|
||||
|
||||
.light-accordion > .panel-heading > .panel-title {
|
||||
font-size: 12pt;
|
||||
}
|
||||
|
||||
.app-generator {
|
||||
position: absolute;
|
||||
bottom: 0; right: 10px;
|
||||
bottom: 0;
|
||||
right: 10px;
|
||||
z-index: 100;
|
||||
padding: 3px 15px;
|
||||
border: 1px solid $border-color;
|
||||
border-top-left-radius: 8px;
|
||||
background: $bg-gray;
|
||||
|
||||
@media only screen and (max-width: 768px) {
|
||||
display: none;
|
||||
}
|
||||
@ -533,7 +626,7 @@ padding: 10px;
|
||||
right: 0;
|
||||
background: rgba(230, 230, 230, 0.7);
|
||||
position: absolute;
|
||||
z-index:10;
|
||||
z-index: 10;
|
||||
border-radius: 3px;
|
||||
}
|
||||
}
|
||||
@ -573,6 +666,7 @@ padding: 10px;
|
||||
font-size: 1.2em;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.afterAmount {
|
||||
margin-left: -35px;
|
||||
font-weight: bold;
|
||||
@ -592,10 +686,13 @@ padding: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.link-icon {
|
||||
color: #1c94c4;
|
||||
i { margin: 0 5px 0 10px; }
|
||||
|
||||
i {
|
||||
margin: 0 5px 0 10px;
|
||||
}
|
||||
|
||||
span {
|
||||
border-bottom: 1px dashed #00b3ee;
|
||||
text-decoration: none;
|
||||
@ -603,7 +700,6 @@ padding: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.description-hover {
|
||||
span {
|
||||
display: inline-block;
|
||||
@ -651,6 +747,7 @@ padding: 10px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
|
||||
.calendar-legend-block {
|
||||
text-align: right;
|
||||
padding-right: 2em;
|
||||
@ -659,10 +756,12 @@ padding: 10px;
|
||||
font-size: 12px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.legends {
|
||||
display: flex;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
.calendar-legend {
|
||||
border: 1px solid;
|
||||
border-left: 3px solid;
|
||||
|
@ -1,13 +1,14 @@
|
||||
// This is the default html and body font-size for the base rem value.
|
||||
$rem-base: 10px !default;
|
||||
|
||||
|
||||
// IMPORT ONCE
|
||||
// We use this to prevent styles from being loaded multiple times for compenents that rely on other components.
|
||||
$modules: () !default;
|
||||
|
||||
@mixin exports($name) {
|
||||
@if (index($modules, $name) == false) {
|
||||
@if index($modules, $name) == false {
|
||||
$modules: append($modules, $name);
|
||||
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@ -16,7 +17,6 @@ $modules: () !default;
|
||||
// @functions
|
||||
//
|
||||
|
||||
|
||||
// STRIP UNIT
|
||||
// It strips the unit of measure and returns it
|
||||
@function strip-unit($num) {
|
||||
@ -24,13 +24,17 @@ $modules: () !default;
|
||||
}
|
||||
|
||||
// CONVERT TO REM
|
||||
@function convert-to-rem($value, $base-value: $rem-base) {
|
||||
@function convert-to-rem($value, $base-value: $rem-base) {
|
||||
$value: strip-unit($value) / strip-unit($base-value) * 1rem;
|
||||
@if ($value == 0rem) { $value: 0; } // Turn 0rem into 0
|
||||
|
||||
@if $value == 0rem {
|
||||
$value: 0;
|
||||
}
|
||||
|
||||
// Turn 0rem into 0
|
||||
@return $value;
|
||||
}
|
||||
|
||||
|
||||
// REM CALC
|
||||
|
||||
// New Syntax, allows to optionally calculate on a different base value to counter compounding effect of rem's.
|
||||
@ -53,11 +57,15 @@ $modules: () !default;
|
||||
@function rem-calc($values, $base-value: $rem-base) {
|
||||
$max: length($values);
|
||||
|
||||
@if $max == 1 { @return convert-to-rem(nth($values, 1), $base-value); }
|
||||
@if $max == 1 {
|
||||
@return convert-to-rem(nth($values, 1), $base-value);
|
||||
}
|
||||
|
||||
$remValues: ();
|
||||
|
||||
@for $i from 1 through $max {
|
||||
$remValues: append($remValues, convert-to-rem(nth($values, $i), $base-value));
|
||||
}
|
||||
|
||||
@return $remValues;
|
||||
}
|
||||
|
@ -1,321 +1,364 @@
|
||||
/*layout*/
|
||||
.header,
|
||||
.footer{
|
||||
min-height: 50px;
|
||||
padding: 0 15px;
|
||||
> p{
|
||||
margin-top: 15px;
|
||||
display: inline-block;
|
||||
}
|
||||
> .btn,
|
||||
> .btn-group,
|
||||
> .btn-toolbar
|
||||
{
|
||||
margin-top: 14px;
|
||||
}
|
||||
> .btn-lg{
|
||||
margin-top: 0;
|
||||
}
|
||||
.nav-tabs {
|
||||
border: none;
|
||||
margin-left: -15px;
|
||||
margin-right: -15px;
|
||||
> li {
|
||||
a{
|
||||
border: none !important;
|
||||
border-radius: 0;
|
||||
padding-top: 15px;
|
||||
padding-bottom: 15px;
|
||||
line-height: 20px;
|
||||
&:hover,
|
||||
&:focus
|
||||
{
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
&.active a{
|
||||
color: $text-color;
|
||||
&,
|
||||
&:hover{
|
||||
background-color: $body-bg;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.nav-white{
|
||||
> li.active a{
|
||||
&,
|
||||
&:hover{
|
||||
background-color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.navbar{
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
margin-bottom: 0;
|
||||
padding:0;
|
||||
position: relative !important;
|
||||
z-index: 1000;
|
||||
}
|
||||
.footer {
|
||||
min-height: 50px;
|
||||
padding: 0 15px;
|
||||
|
||||
> p {
|
||||
margin-top: 15px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
> .btn,
|
||||
> .btn-group,
|
||||
> .btn-toolbar {
|
||||
margin-top: 14px;
|
||||
}
|
||||
|
||||
> .btn-lg {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.nav-tabs {
|
||||
border: none;
|
||||
margin-left: -15px;
|
||||
margin-right: -15px;
|
||||
|
||||
> li {
|
||||
a {
|
||||
border: none !important;
|
||||
border-radius: 0;
|
||||
padding-top: 15px;
|
||||
padding-bottom: 15px;
|
||||
line-height: 20px;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
&.active a {
|
||||
color: $text-color;
|
||||
|
||||
&,
|
||||
&:hover {
|
||||
background-color: $body-bg;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.nav-white {
|
||||
> li.active a {
|
||||
&,
|
||||
&:hover {
|
||||
background-color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.navbar {
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
margin-bottom: 0;
|
||||
padding: 0;
|
||||
position: relative !important;
|
||||
z-index: 1000;
|
||||
}
|
||||
}
|
||||
|
||||
.header {
|
||||
background-color: $header-bg;
|
||||
@include box-shadow(0 1px 0px #cfcfcf);
|
||||
background-color: $header-bg;
|
||||
|
||||
@include box-shadow(0 1px 0px #cfcfcf);
|
||||
}
|
||||
|
||||
|
||||
.heading {
|
||||
.heading-btn {
|
||||
a {
|
||||
width: 100%;
|
||||
padding: 35px 40%;
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
color: black;
|
||||
|
||||
&:hover {
|
||||
//background-color: $yellow;
|
||||
|
||||
}
|
||||
|
||||
i:before {
|
||||
content: "\f177";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.heading-btn {
|
||||
a {
|
||||
width: 100%;
|
||||
padding: 35px 40%;
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
color: black;
|
||||
&:hover {
|
||||
//background-color: $yellow;
|
||||
}
|
||||
i:before { content: "\f177"; }
|
||||
}
|
||||
}
|
||||
.heading-icon {
|
||||
width: 100%;
|
||||
padding: 35px 40%;
|
||||
display: inline-block;
|
||||
color: black;
|
||||
}
|
||||
.heading-title {
|
||||
//overflow: hidden;
|
||||
height: 94px;
|
||||
h1 {
|
||||
margin: 0 0 0 15px;
|
||||
padding: 36px 15px;
|
||||
}
|
||||
}
|
||||
.heading-actions {
|
||||
height: 94px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.heading-title {
|
||||
//overflow: hidden;
|
||||
height: 94px;
|
||||
|
||||
h1 {
|
||||
margin: 0 0 0 15px;
|
||||
padding: 36px 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.heading-actions {
|
||||
height: 94px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
body.container{
|
||||
padding: 0;
|
||||
body.container {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.aside-md{
|
||||
width: 250px;
|
||||
.aside-md {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
body.container{
|
||||
@include box-shadow(0 3px 60px rgba(0,0,0,0.3));
|
||||
border-left: 1px solid darken($border-color, 10%);
|
||||
border-right: 1px solid darken($border-color, 10%);
|
||||
}
|
||||
.app{
|
||||
&,
|
||||
body{
|
||||
height:100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
.hbox{
|
||||
&.stretch{
|
||||
height:100%;
|
||||
}
|
||||
}
|
||||
.vbox{
|
||||
> section,
|
||||
> footer{
|
||||
position: absolute;
|
||||
}
|
||||
&.flex{
|
||||
> section{
|
||||
> section{
|
||||
overflow: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
body.container {
|
||||
@include box-shadow(0 3px 60px rgba(0, 0, 0, 0.3));
|
||||
|
||||
.hbox{
|
||||
display: table;
|
||||
table-layout: fixed;
|
||||
border-spacing: 0;
|
||||
width: 100%;
|
||||
> aside,
|
||||
> section{
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
height: 100%;
|
||||
float: none;
|
||||
&.show,
|
||||
&.hidden-sm {
|
||||
display: table-cell !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
border-left: 1px solid darken($border-color, 10%);
|
||||
border-right: 1px solid darken($border-color, 10%);
|
||||
}
|
||||
|
||||
.vbox{
|
||||
display: table;
|
||||
border-spacing:0;
|
||||
position: relative;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
> section,
|
||||
> footer {
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
}
|
||||
> header{
|
||||
~ section {
|
||||
top: 50px;
|
||||
}
|
||||
&.header-md{
|
||||
~ section {
|
||||
top: $header-md-height+2;
|
||||
}
|
||||
}
|
||||
}
|
||||
> section{
|
||||
&.w-f{
|
||||
bottom: 50px;
|
||||
}
|
||||
}
|
||||
> footer {
|
||||
top: auto;
|
||||
z-index: 100;
|
||||
~ section {
|
||||
bottom: 50px;
|
||||
}
|
||||
}
|
||||
&.flex{
|
||||
> header,
|
||||
> section,
|
||||
> footer {
|
||||
position: inherit;
|
||||
}
|
||||
> section{
|
||||
display: table-row;
|
||||
height: 100%;
|
||||
> section {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
-webkit-overflow-scrolling:touch;
|
||||
.ie & {
|
||||
display: table-cell;
|
||||
}
|
||||
> section {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.app {
|
||||
&,
|
||||
body {
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.aside-xs{
|
||||
width: 60px;
|
||||
}
|
||||
.aside-sm{
|
||||
width: 150px;
|
||||
}
|
||||
.aside{
|
||||
width: 200px;
|
||||
}
|
||||
.aside-md{
|
||||
width: 250px;
|
||||
}
|
||||
.aside-lg{
|
||||
width: 300px;
|
||||
}
|
||||
.aside-xl{
|
||||
width: 360px;
|
||||
}
|
||||
.aside-xxl{
|
||||
width: 480px;
|
||||
}
|
||||
.hbox {
|
||||
&.stretch {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.header-md{
|
||||
height: $header-md-height;
|
||||
.navbar-form{
|
||||
margin-top: floor( ($header-md-height - 30)/2 );
|
||||
margin-bottom: floor( ($header-md-height - 30)/2 );
|
||||
}
|
||||
}
|
||||
.vbox {
|
||||
> section,
|
||||
> footer {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.scrollable{
|
||||
-webkit-overflow-scrolling:touch;
|
||||
}
|
||||
&.flex {
|
||||
> section {
|
||||
> section {
|
||||
overflow: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color:rgba(50,50,50,0.25);
|
||||
border: 2px solid transparent;
|
||||
border-radius: 10px;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
::-webkit-scrollbar-thumb:hover{
|
||||
background-color:rgba(50,50,50,0.5);
|
||||
}
|
||||
::-webkit-scrollbar-track {
|
||||
background-color:rgba(50,50,50,0.05);
|
||||
}
|
||||
.hbox {
|
||||
display: table;
|
||||
table-layout: fixed;
|
||||
border-spacing: 0;
|
||||
width: 100%;
|
||||
|
||||
> aside,
|
||||
> section {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
height: 100%;
|
||||
float: none;
|
||||
|
||||
&.show,
|
||||
&.hidden-sm {
|
||||
display: table-cell !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.vbox {
|
||||
display: table;
|
||||
border-spacing: 0;
|
||||
position: relative;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
|
||||
> section,
|
||||
> footer {
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
> header {
|
||||
~ section {
|
||||
top: 50px;
|
||||
}
|
||||
|
||||
&.header-md {
|
||||
~ section {
|
||||
top: $header-md-height + 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
> section {
|
||||
&.w-f {
|
||||
bottom: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
> footer {
|
||||
top: auto;
|
||||
z-index: 100;
|
||||
|
||||
~ section {
|
||||
bottom: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
&.flex {
|
||||
> header,
|
||||
> section,
|
||||
> footer {
|
||||
position: inherit;
|
||||
}
|
||||
|
||||
> section {
|
||||
display: table-row;
|
||||
height: 100%;
|
||||
|
||||
> section {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
|
||||
.ie & {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
> section {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.aside-xs {
|
||||
width: 60px;
|
||||
}
|
||||
|
||||
.aside-sm {
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
.aside {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.aside-md {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
.aside-lg {
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
.aside-xl {
|
||||
width: 360px;
|
||||
}
|
||||
|
||||
.aside-xxl {
|
||||
width: 480px;
|
||||
}
|
||||
|
||||
.header-md {
|
||||
height: $header-md-height;
|
||||
|
||||
.navbar-form {
|
||||
margin-top: floor(($header-md-height - 30) / 2);
|
||||
margin-bottom: floor(($header-md-height - 30) / 2);
|
||||
}
|
||||
}
|
||||
|
||||
.scrollable {
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: rgba(50, 50, 50, 0.25);
|
||||
border: 2px solid transparent;
|
||||
border-radius: 10px;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background-color: rgba(50, 50, 50, 0.5);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: rgba(50, 50, 50, 0.05);
|
||||
}
|
||||
}
|
||||
|
||||
.scrollable{
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
.scrollable {
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.no-touch {
|
||||
.scrollable.hover {
|
||||
overflow-y: hidden;
|
||||
&:hover
|
||||
{
|
||||
overflow: visible;
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
::-webkit-scrollbar-button {
|
||||
width: 10px;
|
||||
height: 6px;
|
||||
background-color:rgba(50,50,50,0.05);
|
||||
}
|
||||
.scrollable.hover {
|
||||
overflow-y: hidden;
|
||||
|
||||
&:hover {
|
||||
overflow: visible;
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-button {
|
||||
width: 10px;
|
||||
height: 6px;
|
||||
background-color: rgba(50, 50, 50, 0.05);
|
||||
}
|
||||
}
|
||||
|
||||
.slimScrollBar{
|
||||
border-radius: 5px;
|
||||
border: 2px solid transparent;
|
||||
border-radius: 10px;
|
||||
background-clip: padding-box !important;
|
||||
.slimScrollBar {
|
||||
border-radius: 5px;
|
||||
border: 2px solid transparent;
|
||||
border-radius: 10px;
|
||||
background-clip: padding-box !important;
|
||||
}
|
||||
|
||||
|
||||
@media print {
|
||||
html, body, .hbox, .vbox{
|
||||
html, body, .hbox, .vbox {
|
||||
height: auto;
|
||||
}
|
||||
.vbox{
|
||||
> section,
|
||||
> footer{
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
|
||||
.vbox {
|
||||
> section,
|
||||
> footer {
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.datepicker-container {
|
||||
position: relative;
|
||||
z-index: 100;
|
||||
@ -327,7 +370,7 @@ body.container{
|
||||
padding-top: 0.5em;
|
||||
padding-bottom: 0.5em;
|
||||
position: absolute;
|
||||
right:0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
background-color: #ffffff;
|
||||
|
||||
@ -339,7 +382,7 @@ body.container{
|
||||
vertical-align: middle;
|
||||
|
||||
div.input-group {
|
||||
float:right;
|
||||
float: right;
|
||||
|
||||
ul.dropdown-menu {
|
||||
left: -5em !important;
|
||||
@ -355,10 +398,9 @@ body.container{
|
||||
}
|
||||
|
||||
.customMenuInput {
|
||||
width:100% !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
|
||||
.reservations-locked {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
@ -369,8 +411,8 @@ body.container{
|
||||
background-color: #e4e4e4;
|
||||
padding: 0.7em 0.7em;
|
||||
font-size: 90%;
|
||||
display:inline-block;
|
||||
vertical-align:middle;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
|
||||
.reservation-time {
|
||||
color: #606060;
|
||||
@ -387,7 +429,6 @@ body.container{
|
||||
float: left;
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.custom-logo-container {
|
||||
@ -410,7 +451,7 @@ body.container{
|
||||
width: auto;
|
||||
max-height: 44px;
|
||||
max-width: 100%;
|
||||
margin:auto;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
&:hover .tools-box {
|
||||
@ -453,7 +494,7 @@ body.container{
|
||||
width: auto;
|
||||
max-height: 16px;
|
||||
max-width: 16px;
|
||||
margin:auto;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
&:hover .tools-box {
|
||||
@ -491,7 +532,7 @@ body.container{
|
||||
width: auto;
|
||||
max-height: 185px;
|
||||
max-width: 100%;
|
||||
margin:auto;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
&:hover .tools-box {
|
||||
@ -546,7 +587,6 @@ body.container{
|
||||
.profile-top-infos {
|
||||
padding: 30px 15px 30px 15px;
|
||||
|
||||
|
||||
.private-profile {
|
||||
color: #000;
|
||||
border: 1px solid $border-color;
|
||||
@ -565,10 +605,10 @@ body.container{
|
||||
padding: 43px 15px 15px 15px;
|
||||
text-align: center;
|
||||
|
||||
|
||||
.avatar {
|
||||
display: inline-block;
|
||||
width: 140px;
|
||||
|
||||
img {
|
||||
border: 9px solid #fff;
|
||||
background-color: #fff;
|
||||
@ -593,7 +633,9 @@ body.container{
|
||||
color: $input-color;
|
||||
margin-bottom: 5px;
|
||||
|
||||
i { vertical-align: middle; }
|
||||
i {
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,452 +1,529 @@
|
||||
/*primary nav*/
|
||||
.navbar-header{
|
||||
position: relative;
|
||||
> .btn{
|
||||
position: absolute;
|
||||
font-size: 1.3em;
|
||||
padding: 9px 16px;
|
||||
line-height: 30px;
|
||||
right: 0;
|
||||
}
|
||||
.navbar-brand + .btn{
|
||||
right: 0;
|
||||
top:0;
|
||||
left: auto;
|
||||
}
|
||||
.navbar-header {
|
||||
position: relative;
|
||||
|
||||
> .btn {
|
||||
position: absolute;
|
||||
font-size: 1.3em;
|
||||
padding: 9px 16px;
|
||||
line-height: 30px;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.navbar-brand + .btn {
|
||||
right: 0;
|
||||
top: 0;
|
||||
left: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-brand{
|
||||
float: none;
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
height: auto;
|
||||
line-height: 50px;
|
||||
display: inline-block;
|
||||
padding: 0 15px;
|
||||
&:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
img{
|
||||
max-height: 20px;
|
||||
margin-top: -4px;
|
||||
vertical-align: middle;
|
||||
display: initial;
|
||||
}
|
||||
.navbar-brand {
|
||||
float: none;
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
height: auto;
|
||||
line-height: 50px;
|
||||
display: inline-block;
|
||||
padding: 0 15px;
|
||||
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
img {
|
||||
max-height: 20px;
|
||||
margin-top: -4px;
|
||||
vertical-align: middle;
|
||||
display: initial;
|
||||
}
|
||||
}
|
||||
|
||||
.nav-primary {
|
||||
li {
|
||||
> a > i{
|
||||
margin: floor(-($nav-primary-height - $line-height-computed)/2) -10px;
|
||||
line-height: $nav-primary-height;
|
||||
width: $nav-primary-height;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
&:before{
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
ul.nav {
|
||||
> li {
|
||||
> a{
|
||||
padding: floor(($nav-primary-height - $line-height-computed)/2) 15px;
|
||||
position: relative;
|
||||
font-size: 14px;
|
||||
@include transition(background-color .2s ease-in-out 0s);
|
||||
.no-borders & {
|
||||
border-width: 0 !important;
|
||||
}
|
||||
> .badge{
|
||||
font-size: 11px;
|
||||
padding: 2px 5px 2px 4px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
> .text-muted{
|
||||
margin: 0 3px;
|
||||
}
|
||||
&.active{
|
||||
.text{
|
||||
display: none;
|
||||
}
|
||||
.text-active{
|
||||
display: inline-block !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
li a{
|
||||
font-weight: normal;
|
||||
text-transform: none;
|
||||
}
|
||||
&.active{
|
||||
> ul{
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
> li.menu-spacer {
|
||||
height: 1px;
|
||||
margin: 6px 80% 6px 5px;
|
||||
background: linear-gradient(45deg, black, transparent);
|
||||
}
|
||||
ul{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
li {
|
||||
> a > i {
|
||||
margin: floor(-($nav-primary-height - $line-height-computed) / 2) -10px;
|
||||
line-height: $nav-primary-height;
|
||||
width: $nav-primary-height;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
.bg-black &{
|
||||
> ul.nav-main{
|
||||
> li{
|
||||
&:hover,
|
||||
&:before {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ul.nav {
|
||||
> li {
|
||||
> a {
|
||||
padding: floor(($nav-primary-height - $line-height-computed) / 2) 15px;
|
||||
position: relative;
|
||||
font-size: 14px;
|
||||
|
||||
@include transition(background-color 0.2s ease-in-out 0s);
|
||||
|
||||
.no-borders & {
|
||||
border-width: 0 !important;
|
||||
}
|
||||
|
||||
> .badge {
|
||||
font-size: 11px;
|
||||
padding: 2px 5px 2px 4px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
> .text-muted {
|
||||
margin: 0 3px;
|
||||
}
|
||||
|
||||
&.active {
|
||||
.text {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.text-active {
|
||||
display: inline-block !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
li a {
|
||||
font-weight: normal;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
&.active {
|
||||
> ul {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
> li.menu-spacer {
|
||||
height: 1px;
|
||||
margin: 6px 80% 6px 5px;
|
||||
background: linear-gradient(45deg, black, transparent);
|
||||
}
|
||||
|
||||
ul {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.bg-black & {
|
||||
> ul.nav-main {
|
||||
> li {
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active,
|
||||
&.active{
|
||||
> a{
|
||||
background-color: $brand-success;
|
||||
}
|
||||
&.active {
|
||||
> a {
|
||||
background-color: $brand-success;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.visible-nav-xs{display: none;}
|
||||
.nav-xs {
|
||||
width: $nav-xs-width;
|
||||
> .nav-container { width: $nav-xs-width; }
|
||||
.slimScrollDiv,
|
||||
.slim-scroll {
|
||||
overflow: visible !important;
|
||||
}
|
||||
.slimScrollBar,
|
||||
.slimScrollRail {
|
||||
display: none !important;
|
||||
}
|
||||
.scrollable{
|
||||
overflow: visible;
|
||||
}
|
||||
.nav-primary{
|
||||
> ul {
|
||||
> li {
|
||||
> a {
|
||||
position: relative;
|
||||
padding: 0 !important;
|
||||
font-size: 11px;
|
||||
text-align: center;
|
||||
height: $nav-xs-height;
|
||||
overflow-y: hidden;
|
||||
border: none !important;
|
||||
span {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
height: $nav-xs-height;
|
||||
width: $nav-xs-width;
|
||||
&.pull-right{
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
i{
|
||||
width: auto;
|
||||
float: none;
|
||||
display: block;
|
||||
font-size: 16px;
|
||||
margin: 0;
|
||||
line-height: $nav-xs-height;
|
||||
border: none !important;
|
||||
@include transition(margin-top 0.2s);
|
||||
b{
|
||||
left: 0 !important;
|
||||
}
|
||||
}
|
||||
.badge{
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 4px;
|
||||
z-index: 3;
|
||||
}
|
||||
}
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active,
|
||||
&.active
|
||||
{
|
||||
> a{
|
||||
i{
|
||||
margin-top: -$nav-xs-height;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
ul{
|
||||
display: none !important;
|
||||
position: absolute;
|
||||
left: 100%;
|
||||
top: 0;
|
||||
z-index: 1050;
|
||||
width: 220px;
|
||||
-webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.1);
|
||||
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
|
||||
}
|
||||
}
|
||||
li:hover,
|
||||
li:focus,
|
||||
li:active
|
||||
{
|
||||
> ul{
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.nav-xs-right{
|
||||
.nav-primary > ul ul{
|
||||
left: auto;
|
||||
right: 100%;
|
||||
}
|
||||
}
|
||||
> .vbox > .header,
|
||||
> .vbox > .footer {
|
||||
padding:0 floor(($nav-xs-width - 30px)/2);
|
||||
}
|
||||
.hidden-nav-xs{
|
||||
display: none;
|
||||
}
|
||||
.visible-nav-xs{
|
||||
display: inherit;
|
||||
}
|
||||
.text-center-nav-xs{
|
||||
text-align: center;
|
||||
}
|
||||
.visible-nav-xs {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nav-user{
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
.avatar{
|
||||
float: none !important;
|
||||
margin-right: 0;
|
||||
}
|
||||
.dropdown{
|
||||
> a{
|
||||
display: block;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
.navbar-header{
|
||||
float: none;
|
||||
}
|
||||
.navbar-brand{
|
||||
display: block;
|
||||
padding: 0;
|
||||
img{
|
||||
margin-right:0;
|
||||
}
|
||||
}
|
||||
.navbar{
|
||||
padding: 0
|
||||
}
|
||||
}
|
||||
.navbar-brand{
|
||||
.header-md &{
|
||||
line-height: $header-md-height;
|
||||
img{
|
||||
max-height: 44px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.navbar-nav{
|
||||
> li{
|
||||
> a{
|
||||
.header-md &{
|
||||
padding: floor(($header-md-height - $line-height-computed)/2 - 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.nav-xs {
|
||||
width: $nav-xs-width;
|
||||
|
||||
> .nav-container {
|
||||
width: $nav-xs-width;
|
||||
}
|
||||
|
||||
.slimScrollDiv,
|
||||
.slim-scroll {
|
||||
overflow: visible !important;
|
||||
}
|
||||
|
||||
.slimScrollBar,
|
||||
.slimScrollRail {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.scrollable {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.nav-primary {
|
||||
> ul {
|
||||
> li {
|
||||
> a {
|
||||
position: relative;
|
||||
padding: 0 !important;
|
||||
font-size: 11px;
|
||||
text-align: center;
|
||||
height: $nav-xs-height;
|
||||
overflow-y: hidden;
|
||||
border: none !important;
|
||||
|
||||
span {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
height: $nav-xs-height;
|
||||
width: $nav-xs-width;
|
||||
|
||||
&.pull-right {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
i {
|
||||
width: auto;
|
||||
float: none;
|
||||
display: block;
|
||||
font-size: 16px;
|
||||
margin: 0;
|
||||
line-height: $nav-xs-height;
|
||||
border: none !important;
|
||||
|
||||
@include transition(margin-top 0.2s);
|
||||
|
||||
b {
|
||||
left: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.badge {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 4px;
|
||||
z-index: 3;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active,
|
||||
&.active {
|
||||
> a {
|
||||
i {
|
||||
margin-top: -$nav-xs-height;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
display: none !important;
|
||||
position: absolute;
|
||||
left: 100%;
|
||||
top: 0;
|
||||
z-index: 1050;
|
||||
width: 220px;
|
||||
-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
li:hover,
|
||||
li:focus,
|
||||
li:active {
|
||||
> ul {
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.nav-xs-right {
|
||||
.nav-primary > ul ul {
|
||||
left: auto;
|
||||
right: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
> .vbox > .header,
|
||||
> .vbox > .footer {
|
||||
padding: 0 floor(($nav-xs-width - 30px) / 2);
|
||||
}
|
||||
|
||||
.hidden-nav-xs {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.visible-nav-xs {
|
||||
display: inherit;
|
||||
}
|
||||
|
||||
.text-center-nav-xs {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.nav-user {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
|
||||
.avatar {
|
||||
float: none !important;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
> a {
|
||||
display: block;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-header {
|
||||
float: none;
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
display: block;
|
||||
padding: 0;
|
||||
|
||||
img {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
.header-md & {
|
||||
line-height: $header-md-height;
|
||||
|
||||
img {
|
||||
max-height: 44px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-nav {
|
||||
> li {
|
||||
> a {
|
||||
.header-md & {
|
||||
padding: floor(($header-md-height - $line-height-computed) / 2 - 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.navbar-fixed-top-xs{
|
||||
position: fixed !important;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 1100;
|
||||
// + *{
|
||||
// padding-top: 50px !important;
|
||||
// }
|
||||
}
|
||||
.nav-bar-fixed-bottom{
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
z-index: 1100;
|
||||
}
|
||||
/* .off screen nav from left or right*/
|
||||
html, body{
|
||||
overflow-x: hidden;
|
||||
min-height: 100%;
|
||||
}
|
||||
.nav-primary{
|
||||
.dropdown-menu{
|
||||
position: relative;
|
||||
float:none;
|
||||
left: 0;
|
||||
margin-left: 0;
|
||||
padding: 0;
|
||||
a{
|
||||
padding: 15px;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
li:last-child{
|
||||
a{
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.navbar-header{
|
||||
text-align: center;
|
||||
}
|
||||
.nav-user{
|
||||
margin: 0;
|
||||
padding: 15px;
|
||||
&.open{
|
||||
display: inherit !important;
|
||||
}
|
||||
.dropdown-menu{
|
||||
display: block;
|
||||
position: static;
|
||||
float: none;
|
||||
}
|
||||
.dropdown > a{
|
||||
display: block;
|
||||
text-align: center;
|
||||
font-size: 18px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
.avatar{
|
||||
width: 160px !important;
|
||||
float: none !important;
|
||||
display: block;
|
||||
margin: 20px auto;
|
||||
padding: 5px;
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
position: relative;
|
||||
&:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 5px;
|
||||
right: 5px;
|
||||
bottom: 5px;
|
||||
top: 5px;
|
||||
border: 4px solid #fff;
|
||||
border-radius: 500px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.nav-off-screen {
|
||||
display: block !important;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: $off-screen-nav-width;
|
||||
visibility: visible;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
.nav-primary{
|
||||
display: block !important;
|
||||
}
|
||||
.navbar-fixed-top-xs{
|
||||
width: $off-screen-nav-width;
|
||||
}
|
||||
&.push-right{
|
||||
.navbar-fixed-top-xs{
|
||||
left: 100% - $off-screen-nav-width;
|
||||
}
|
||||
}
|
||||
&.push-right{
|
||||
left: auto;
|
||||
right: 0;
|
||||
+ *{
|
||||
@include translate3d(-$off-screen-nav-width, 0px, 0px);
|
||||
}
|
||||
}
|
||||
+ *{
|
||||
background-color: $body-bg;
|
||||
@include transition-transform(0.2s ease-in-out);
|
||||
@include transition-delay(0s);
|
||||
@include translate3d(0px, 0px, 0px);
|
||||
@include backface-visibility(hidden);
|
||||
@include translate3d($off-screen-nav-width, 0px, 0px);
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 2;
|
||||
.nav-off-screen-block {
|
||||
display:block !important;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
z-index: 1950;
|
||||
}
|
||||
}
|
||||
}
|
||||
.navbar-fixed-top-xs {
|
||||
position: fixed !important;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 1100;
|
||||
|
||||
.navbar + section{
|
||||
.nav-off-screen{
|
||||
top: 50px;
|
||||
+ *{
|
||||
top: 50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
// + *{
|
||||
// padding-top: 50px !important;
|
||||
// }
|
||||
|
||||
}
|
||||
|
||||
.slimScrollDiv,
|
||||
.slim-scroll {
|
||||
overflow: visible !important;
|
||||
height: auto !important;
|
||||
}
|
||||
.slimScrollBar,
|
||||
.slimScrollRail {
|
||||
display: none !important;
|
||||
}
|
||||
.nav-bar-fixed-bottom {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
z-index: 1100;
|
||||
}
|
||||
|
||||
/* .off screen nav from left or right*/
|
||||
html, body {
|
||||
overflow-x: hidden;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
.nav-primary {
|
||||
.dropdown-menu {
|
||||
position: relative;
|
||||
float: none;
|
||||
left: 0;
|
||||
margin-left: 0;
|
||||
padding: 0;
|
||||
|
||||
a {
|
||||
padding: 15px;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
li:last-child {
|
||||
a {
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-header {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.nav-user {
|
||||
margin: 0;
|
||||
padding: 15px;
|
||||
|
||||
&.open {
|
||||
display: inherit !important;
|
||||
}
|
||||
|
||||
.dropdown-menu {
|
||||
display: block;
|
||||
position: static;
|
||||
float: none;
|
||||
}
|
||||
|
||||
.dropdown > a {
|
||||
display: block;
|
||||
text-align: center;
|
||||
font-size: 18px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.avatar {
|
||||
width: 160px !important;
|
||||
float: none !important;
|
||||
display: block;
|
||||
margin: 20px auto;
|
||||
padding: 5px;
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
position: relative;
|
||||
|
||||
&:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 5px;
|
||||
right: 5px;
|
||||
bottom: 5px;
|
||||
top: 5px;
|
||||
border: 4px solid #fff;
|
||||
border-radius: 500px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.nav-off-screen {
|
||||
display: block !important;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: $off-screen-nav-width;
|
||||
visibility: visible;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
|
||||
.nav-primary {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
.navbar-fixed-top-xs {
|
||||
width: $off-screen-nav-width;
|
||||
}
|
||||
|
||||
&.push-right {
|
||||
.navbar-fixed-top-xs {
|
||||
left: 100% - $off-screen-nav-width;
|
||||
}
|
||||
}
|
||||
|
||||
&.push-right {
|
||||
left: auto;
|
||||
right: 0;
|
||||
|
||||
+ * {
|
||||
@include translate3d(-$off-screen-nav-width, 0px, 0px);
|
||||
}
|
||||
}
|
||||
|
||||
+ * {
|
||||
background-color: $body-bg;
|
||||
|
||||
@include transition-transform(0.2s ease-in-out);
|
||||
@include transition-delay(0s);
|
||||
@include translate3d(0px, 0px, 0px);
|
||||
@include backface-visibility(hidden);
|
||||
@include translate3d($off-screen-nav-width, 0px, 0px);
|
||||
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 2;
|
||||
|
||||
.nav-off-screen-block {
|
||||
display: block !important;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
z-index: 1950;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.navbar + section {
|
||||
.nav-off-screen {
|
||||
top: 50px;
|
||||
|
||||
+ * {
|
||||
top: 50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.slimScrollDiv,
|
||||
.slim-scroll {
|
||||
overflow: visible !important;
|
||||
height: auto !important;
|
||||
}
|
||||
|
||||
.slimScrollBar,
|
||||
.slimScrollRail {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#nav {
|
||||
// border-right: 1px solid $red-dark;
|
||||
.nav {
|
||||
//background-color: $red;
|
||||
> li {
|
||||
> a {
|
||||
padding: 13px 17px;
|
||||
font-weight: 600;
|
||||
color: white;
|
||||
&:hover,
|
||||
&:focus, &.active {
|
||||
//background-color: $red-light;
|
||||
color: white;
|
||||
}
|
||||
&.active {
|
||||
border-left: 3px solid;// #870003;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// border-right: 1px solid $red-dark;
|
||||
.nav {
|
||||
//background-color: $red;
|
||||
> li {
|
||||
> a {
|
||||
padding: 13px 17px;
|
||||
font-weight: 600;
|
||||
color: white;
|
||||
|
||||
&:hover,
|
||||
&:focus, &.active {
|
||||
//background-color: $red-light;
|
||||
color: white;
|
||||
}
|
||||
|
||||
&.active {
|
||||
border-left: 3px solid;
|
||||
|
||||
// #870003;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// overrides bootstrap
|
||||
@ -454,7 +531,6 @@
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
.user-profile-nav > a {
|
||||
display: inline-block !important;
|
||||
padding: 11px 44px !important;
|
||||
|
@ -1,23 +1,25 @@
|
||||
// medium editor placeholder
|
||||
.medium-editor-placeholder {
|
||||
min-height: 30px; // fix for firefox
|
||||
min-height: 30px;
|
||||
|
||||
// fix for firefox
|
||||
}
|
||||
|
||||
//xeditable
|
||||
.editable-buttons{
|
||||
button[type=submit].btn-primary{
|
||||
.editable-buttons {
|
||||
button[type=submit].btn-primary {
|
||||
@extend .btn-warning;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//summernote
|
||||
.note-editor .note-editable {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.note-editor {
|
||||
.form-group {
|
||||
margin-left: 0px;
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
@ -30,7 +32,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Growl
|
||||
.growl {
|
||||
top: 90px;
|
||||
@ -57,6 +58,7 @@
|
||||
height: 40px;
|
||||
line-height: 18px;
|
||||
padding: 10px;
|
||||
|
||||
//&:hover, &:active, &.fc-state-active { background-color: $yellow; }
|
||||
}
|
||||
|
||||
@ -105,7 +107,10 @@
|
||||
cursor: pointer;
|
||||
z-index: 9999;
|
||||
text-align: right;
|
||||
.training-reserve &, .machine-reserve &, .public-calendar & { display: none; }
|
||||
|
||||
.training-reserve &, .machine-reserve &, .public-calendar & {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.fc-v-event.fc-end {
|
||||
@ -127,18 +132,13 @@
|
||||
}
|
||||
|
||||
.fc-selected {
|
||||
box-shadow: 0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.2);
|
||||
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.editable-input label {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Slider
|
||||
========================================================================== */
|
||||
@ -158,29 +158,37 @@
|
||||
color: white;
|
||||
font-weight: 800;
|
||||
text-align: center;
|
||||
|
||||
a {
|
||||
color: white;
|
||||
&:hover { color: $yellow; }
|
||||
|
||||
&:hover {
|
||||
color: $yellow;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.description {
|
||||
font-size: rem-calc(18);
|
||||
line-height: rem-calc(18);
|
||||
color: white;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.carousel-control {
|
||||
cursor: pointer;
|
||||
background: none;
|
||||
|
||||
@include border-radius($border-radius-base);
|
||||
|
||||
&:hover, &:focus {
|
||||
//color: $yellow;
|
||||
|
||||
}
|
||||
|
||||
.glyphicon-chevron-left {
|
||||
font-family: 'fontawesome' !important;
|
||||
|
||||
&:before {
|
||||
content: "\f053" !important;
|
||||
}
|
||||
@ -188,12 +196,13 @@
|
||||
|
||||
.glyphicon-chevron-right {
|
||||
font-family: 'fontawesome' !important;
|
||||
|
||||
&:before {
|
||||
content: "\f054" !important;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.carousel-indicators {
|
||||
display: none;
|
||||
}
|
||||
@ -222,47 +231,55 @@
|
||||
// }
|
||||
// }
|
||||
|
||||
|
||||
|
||||
.banner { }
|
||||
.banner {}
|
||||
|
||||
.slider {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
|
||||
&.slider-min {
|
||||
.slider-arrows {
|
||||
bottom: 40%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.slider-arrow {
|
||||
margin-bottom: 0;
|
||||
color: black;
|
||||
border: none;
|
||||
|
||||
&.slider-arrow--left {
|
||||
left: -16px;
|
||||
}
|
||||
|
||||
&.slider-arrow--right {
|
||||
right: -16px;
|
||||
}
|
||||
|
||||
.icon {
|
||||
font-size: 24px;
|
||||
|
||||
&.icon-angle-left {
|
||||
width: 18px;
|
||||
}
|
||||
&:hover { color: $yellow; }
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: $yellow;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.slider-actu {
|
||||
.slider-arrows {
|
||||
.slider-arrow--left { display: none; }
|
||||
.slider-arrow--left {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.slider-arrow--right {
|
||||
bottom: 41px;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -271,9 +288,11 @@
|
||||
.slides {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
/* Clear fix */
|
||||
overflow: hidden;
|
||||
*zoom: 1;
|
||||
|
||||
/**
|
||||
* Prevent blinking issue
|
||||
* Not tested. Experimental.
|
||||
@ -286,6 +305,7 @@
|
||||
height: 100%;
|
||||
float: left;
|
||||
clear: none;
|
||||
|
||||
&.content_article {
|
||||
height: 620px;
|
||||
-webkit-background-size: cover;
|
||||
@ -296,6 +316,7 @@
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.content_article-wrapper {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
@ -304,6 +325,7 @@
|
||||
margin: 0 auto;
|
||||
left: 0;
|
||||
right: 0;
|
||||
|
||||
.content_article-h {
|
||||
font-weight: 900;
|
||||
color: white;
|
||||
@ -314,6 +336,7 @@
|
||||
margin-bottom: 20px;
|
||||
line-height: 50px;
|
||||
}
|
||||
|
||||
.content_article-c {
|
||||
color: $red;
|
||||
font-size: 20px;
|
||||
@ -321,6 +344,7 @@
|
||||
margin-top: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.content_article-p {
|
||||
// font-family: $font-proxima-condensed;
|
||||
font-size: 20px;
|
||||
@ -328,13 +352,16 @@
|
||||
margin: 0;
|
||||
line-height: 30px;
|
||||
}
|
||||
|
||||
.content_article-btns {
|
||||
margin-top: 40px;
|
||||
clear: both;
|
||||
|
||||
.header_nav-item-a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.header_nav-item-a--btn {
|
||||
padding: 12px 20px;
|
||||
border-radius: 5px;
|
||||
@ -343,6 +370,7 @@
|
||||
text-transform: uppercase;
|
||||
font-family: $font-proxima-condensed;
|
||||
font-weight: 600;
|
||||
|
||||
&:hover {
|
||||
background-color: $yellow;
|
||||
color: black;
|
||||
@ -358,11 +386,16 @@
|
||||
margin-bottom: -20px;
|
||||
padding: 20px;
|
||||
color: white;
|
||||
|
||||
width: 58px; height: 58px;
|
||||
width: 58px;
|
||||
height: 58px;
|
||||
border: 3px solid white;
|
||||
border-radius: 50%;
|
||||
&:hover { border-color: $yellow; color: $yellow; }
|
||||
|
||||
&:hover {
|
||||
border-color: $yellow;
|
||||
color: $yellow;
|
||||
}
|
||||
|
||||
.icon {
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
@ -373,12 +406,15 @@
|
||||
right: 0;
|
||||
margin: 0 auto;
|
||||
width: 12px;
|
||||
|
||||
&.icon-angle-left {
|
||||
width: 18px;
|
||||
}
|
||||
&:hover { color: $yellow; }
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: $yellow;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.home {
|
||||
@ -420,12 +456,12 @@
|
||||
background: #ccc;
|
||||
}
|
||||
|
||||
|
||||
// Twitter
|
||||
#twitter {
|
||||
ul {
|
||||
margin: 0px 15px;
|
||||
padding-left: 0;
|
||||
|
||||
li {
|
||||
display: block;
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
/*
|
||||
*= require fullcalendar/dist/fullcalendar.print
|
||||
*/
|
||||
*/
|
||||
|
@ -1,6 +1,8 @@
|
||||
|
||||
@media screen and (max-width: $screen-sm-min) {
|
||||
.modal-dialog { top: 0; }
|
||||
.modal-dialog {
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
.modal-logo {
|
||||
display: none;
|
||||
@ -8,38 +10,43 @@
|
||||
}
|
||||
|
||||
.about-fablab {
|
||||
.about-title {
|
||||
font-size: rem-calc(30);
|
||||
line-height: rem-calc(28);
|
||||
text-align: center;
|
||||
}
|
||||
.about-picture {
|
||||
padding: 70px 0;
|
||||
height: 226px;
|
||||
}
|
||||
.about-title {
|
||||
font-size: rem-calc(30);
|
||||
line-height: rem-calc(28);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.about-picture {
|
||||
padding: 70px 0;
|
||||
height: 226px;
|
||||
}
|
||||
}
|
||||
|
||||
// fix for full-calendar display on small devices
|
||||
.fc-toolbar {
|
||||
margin-bottom: 2.5em !important;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media screen and (max-width: $screen-md-min) {
|
||||
.heading {
|
||||
.heading-title {
|
||||
h1 {
|
||||
font-size: rem-calc(16);
|
||||
padding: 26px 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.heading {
|
||||
.heading-title {
|
||||
h1 {
|
||||
font-size: rem-calc(16);
|
||||
padding: 26px 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.m-t-xxl-on-md {
|
||||
margin-top: 60px;
|
||||
}
|
||||
|
||||
.m-t-xxl-on-md { margin-top: 60px; }
|
||||
.m-t-3xl-on-md { margin-top: 80px; }
|
||||
.m-t-4xl-on-md { margin-top: 100px; }
|
||||
.m-t-3xl-on-md {
|
||||
margin-top: 80px;
|
||||
}
|
||||
|
||||
.m-t-4xl-on-md {
|
||||
margin-top: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,67 +1,142 @@
|
||||
.nopadding {
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.no-upper {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
.font-felt { font-family: $font-felt; }
|
||||
|
||||
p.font-felt {
|
||||
|
||||
.font-felt {
|
||||
font-family: $font-felt;
|
||||
}
|
||||
|
||||
p.font-felt {}
|
||||
|
||||
p, .widget p {
|
||||
&.font-felt, .font-felt { font-size: rem-calc(18) !important; }
|
||||
&.font-felt, .font-felt {
|
||||
font-size: rem-calc(18) !important;
|
||||
}
|
||||
|
||||
&.fleche-left {
|
||||
position: relative;
|
||||
padding-left: 5px;
|
||||
|
||||
span.or {
|
||||
border: 2px solid $yellow;
|
||||
border-radius: 50%;
|
||||
padding: 10px 17px 10px 17px;
|
||||
}
|
||||
}
|
||||
|
||||
img.fleche-left {
|
||||
position: absolute;
|
||||
left: -35px;
|
||||
top: 15px;
|
||||
}
|
||||
|
||||
img.fleche-right {
|
||||
position: absolute;
|
||||
right: -35px;
|
||||
top: 15px;
|
||||
}
|
||||
|
||||
img.fleche-left-from-top {
|
||||
transform: rotate(90deg) scaleX(-1);
|
||||
}
|
||||
|
||||
img.fleche-right-from-top {
|
||||
transform: rotate(270deg)
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
}
|
||||
|
||||
.pos-rlt{position: relative;}
|
||||
.pos-stc{position: static;}
|
||||
.pos-abt{position: absolute;}
|
||||
.line {*width: 100%;height: 2px;margin: 10px 0;font-size:0;overflow: hidden;}
|
||||
.line-s{height: 1px;}
|
||||
.line-xs{margin: 0}
|
||||
.line-lg{margin-top:15px;margin-bottom: 15px}
|
||||
.line-dashed{border-style: dashed !important;background-color: transparent;border-width:0;}
|
||||
.no-line{border-width: 0}
|
||||
.no-border, .no-borders{border-color:transparent;border-width:0}
|
||||
.no-radius{border-radius: 0}
|
||||
.block{display:block;}
|
||||
.block.hide{display: none;}
|
||||
.inline{display:inline-block !important;}
|
||||
.none{display: none;}
|
||||
.pull-left{float: left;}
|
||||
.pull-right-lg{float: right;}
|
||||
.pull-none{float: none;}
|
||||
.rounded{border-radius: 500px;}
|
||||
.pos-rlt {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.h480 { height: 480px; }
|
||||
.pos-stc {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.pos-abt {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.line {
|
||||
*width: 100%;
|
||||
height: 2px;
|
||||
margin: 10px 0;
|
||||
font-size: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.line-s {
|
||||
height: 1px;
|
||||
}
|
||||
|
||||
.line-xs {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.line-lg {
|
||||
margin-top: 15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.line-dashed {
|
||||
border-style: dashed !important;
|
||||
background-color: transparent;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
.no-line {
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
.no-border, .no-borders {
|
||||
border-color: transparent;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
.no-radius {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.block {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.block.hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.inline {
|
||||
display: inline-block !important;
|
||||
}
|
||||
|
||||
.none {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.pull-left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.pull-right-lg {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.pull-none {
|
||||
float: none;
|
||||
}
|
||||
|
||||
.rounded {
|
||||
border-radius: 500px;
|
||||
}
|
||||
|
||||
.h480 {
|
||||
height: 480px;
|
||||
}
|
||||
|
||||
// .btn-s-xs{min-width: 90px}
|
||||
// .btn-s-sm{min-width: 100px}
|
||||
@ -69,251 +144,747 @@ p, .widget p {
|
||||
// .btn-s-lg{min-width: 150px}
|
||||
// .btn-s-xl{min-width: 200px}
|
||||
|
||||
.l-h-2x{line-height: rem-calc(18);}
|
||||
.l-h-2x {
|
||||
line-height: rem-calc(18);
|
||||
}
|
||||
|
||||
// .l-h-1x{line-height: 1.2;}
|
||||
// .l-h{line-height: 1.5;}
|
||||
.l-n { line-height: 1em; }
|
||||
.v-middle{vertical-align: middle !important;}
|
||||
.v-top{vertical-align: top !important;}
|
||||
.v-bottom{vertical-align: bottom !important;}
|
||||
.l-n {
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
.font-normal{font-weight: normal;}
|
||||
.font-thin{font-weight: 300;}
|
||||
.font-sbold{font-weight: 600;}
|
||||
.font-bold{font-weight: 700;}
|
||||
.font-ebold{font-weight: 900;}
|
||||
.v-middle {
|
||||
vertical-align: middle !important;
|
||||
}
|
||||
|
||||
.text-xl{font-size: $font-size-xl;}
|
||||
.text-lg{font-size: $font-size-lg;}
|
||||
.text-md{font-size: $font-size-md;}
|
||||
.text-sm{font-size: $font-size-sm;}
|
||||
.text-xs{font-size: $font-size-xs;}
|
||||
.text-base{font-size: $font-size-base;}
|
||||
.text-ellipsis{
|
||||
.v-top {
|
||||
vertical-align: top !important;
|
||||
}
|
||||
|
||||
.v-bottom {
|
||||
vertical-align: bottom !important;
|
||||
}
|
||||
|
||||
.font-normal {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.font-thin {
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.font-sbold {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.font-bold {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.font-ebold {
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.text-xl {
|
||||
font-size: $font-size-xl;
|
||||
}
|
||||
|
||||
.text-lg {
|
||||
font-size: $font-size-lg;
|
||||
}
|
||||
|
||||
.text-md {
|
||||
font-size: $font-size-md;
|
||||
}
|
||||
|
||||
.text-sm {
|
||||
font-size: $font-size-sm;
|
||||
}
|
||||
|
||||
.text-xs {
|
||||
font-size: $font-size-xs;
|
||||
}
|
||||
|
||||
.text-base {
|
||||
font-size: $font-size-base;
|
||||
}
|
||||
|
||||
.text-ellipsis {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow:ellipsis;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.text-u-c, .upper{text-transform: uppercase;}
|
||||
.text-l-t{text-decoration: line-through;}
|
||||
.text-u-l, .underline {text-decoration: underline;}
|
||||
.text-c { text-transform: capitalize; }
|
||||
|
||||
.text-italic { font-style: italic; }
|
||||
.text-u-c, .upper {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.text-left { text-align: left !important; }
|
||||
.text-center { text-align: center; }
|
||||
.text-right { text-align: right; }
|
||||
.text-l-t {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.text-active, .active > .text, .active > .auto .text{display: none !important;}
|
||||
.active > .text-active, .active > .auto .text-active{display: inline-block !important;}
|
||||
.box-shadow{
|
||||
.text-u-l, .underline {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.text-c {
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.text-italic {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.text-left {
|
||||
text-align: left !important;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.text-right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.text-active, .active > .text, .active > .auto .text {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.active > .text-active, .active > .auto .text-active {
|
||||
display: inline-block !important;
|
||||
}
|
||||
|
||||
.box-shadow {
|
||||
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.cover { background-size:cover; }
|
||||
.break-word { word-wrap: break-word; }
|
||||
.cover {
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.wrapper-xxs{padding: 4px 6px;}
|
||||
.wrapper-sm{padding: 5px 10px;}
|
||||
.wrapper{padding: 15px;}
|
||||
.wrapper-md{padding: 20px;}
|
||||
.wrapper-lg{padding: 30px;}
|
||||
.wrapper-xl{padding: 50px;}
|
||||
.padder{padding-left:15px;padding-right: 15px}
|
||||
.padder-icon{padding-left:30px;padding-right: 0px; padding-top: 3px; height: 21px}
|
||||
.padder-v{padding-top:15px;padding-bottom: 15px}
|
||||
.no-padder{padding: 0 !important;}
|
||||
.pull-in{margin-left: -15px;margin-right: -15px;}
|
||||
.pull-out{margin:-10px -15px;}
|
||||
.break-word {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.width-35 { width: 35% !important; }
|
||||
.width-70 { width: 70%; }
|
||||
.width-90 { width: 90%; }
|
||||
.wrapper-xxs {
|
||||
padding: 4px 6px;
|
||||
}
|
||||
|
||||
.b{border: 1px solid rgba(0, 0, 0, 0.05)}
|
||||
.b-a{border: 1px solid $border-color}
|
||||
.b-t{border-top: 1px solid $border-color}
|
||||
.b-r{border-right: 1px solid $border-color !important;}
|
||||
.b-b{border-bottom: 1px solid $border-color}
|
||||
.b-l{border-left: 1px solid $border-color}
|
||||
.b-light{border-color: darken($brand-light, 5%)}
|
||||
.b-dark{border-color: lighten($brand-dark, 5%)}
|
||||
.b-primary{border-color: lighten($brand-primary, 5%)}
|
||||
.b-success{border-color: lighten($brand-success, 5%)}
|
||||
.b-info{border-color: lighten($brand-info, 5%)}
|
||||
.b-warning{border-color: lighten($brand-warning, 5%)}
|
||||
.b-danger{border-color: lighten($brand-danger, 5%)}
|
||||
.b-black{border-color: lighten($brand-black, 5%)}
|
||||
.b-white{border-color: #fff}
|
||||
.b-dashed{border-style: dashed !important;}
|
||||
.wrapper-sm {
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
.b-2x{border-width: 2px}
|
||||
.b-3x{border-width: 3px}
|
||||
.b-4x{border-width: 4px}
|
||||
.b-5x{border-width: 5px}
|
||||
.wrapper {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.no-b { border: none !important; }
|
||||
.wrapper-md {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.r{
|
||||
.wrapper-lg {
|
||||
padding: 30px;
|
||||
}
|
||||
|
||||
.wrapper-xl {
|
||||
padding: 50px;
|
||||
}
|
||||
|
||||
.padder {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
|
||||
.padder-icon {
|
||||
padding-left: 30px;
|
||||
padding-right: 0px;
|
||||
padding-top: 3px;
|
||||
height: 21px;
|
||||
}
|
||||
|
||||
.padder-v {
|
||||
padding-top: 15px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
|
||||
.no-padder {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.pull-in {
|
||||
margin-left: -15px;
|
||||
margin-right: -15px;
|
||||
}
|
||||
|
||||
.pull-out {
|
||||
margin: -10px -15px;
|
||||
}
|
||||
|
||||
.width-35 {
|
||||
width: 35% !important;
|
||||
}
|
||||
|
||||
.width-70 {
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
.width-90 {
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
.b {
|
||||
border: 1px solid rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.b-a {
|
||||
border: 1px solid $border-color;
|
||||
}
|
||||
|
||||
.b-t {
|
||||
border-top: 1px solid $border-color;
|
||||
}
|
||||
|
||||
.b-r {
|
||||
border-right: 1px solid $border-color !important;
|
||||
}
|
||||
|
||||
.b-b {
|
||||
border-bottom: 1px solid $border-color;
|
||||
}
|
||||
|
||||
.b-l {
|
||||
border-left: 1px solid $border-color;
|
||||
}
|
||||
|
||||
.b-light {
|
||||
border-color: darken($brand-light, 5%);
|
||||
}
|
||||
|
||||
.b-dark {
|
||||
border-color: lighten($brand-dark, 5%);
|
||||
}
|
||||
|
||||
.b-primary {
|
||||
border-color: lighten($brand-primary, 5%);
|
||||
}
|
||||
|
||||
.b-success {
|
||||
border-color: lighten($brand-success, 5%);
|
||||
}
|
||||
|
||||
.b-info {
|
||||
border-color: lighten($brand-info, 5%);
|
||||
}
|
||||
|
||||
.b-warning {
|
||||
border-color: lighten($brand-warning, 5%);
|
||||
}
|
||||
|
||||
.b-danger {
|
||||
border-color: lighten($brand-danger, 5%);
|
||||
}
|
||||
|
||||
.b-black {
|
||||
border-color: lighten($brand-black, 5%);
|
||||
}
|
||||
|
||||
.b-white {
|
||||
border-color: #fff;
|
||||
}
|
||||
|
||||
.b-dashed {
|
||||
border-style: dashed !important;
|
||||
}
|
||||
|
||||
.b-2x {
|
||||
border-width: 2px;
|
||||
}
|
||||
|
||||
.b-3x {
|
||||
border-width: 3px;
|
||||
}
|
||||
|
||||
.b-4x {
|
||||
border-width: 4px;
|
||||
}
|
||||
|
||||
.b-5x {
|
||||
border-width: 5px;
|
||||
}
|
||||
|
||||
.no-b {
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.r {
|
||||
border-radius: $border-radius-base $border-radius-base $border-radius-base $border-radius-base;
|
||||
}
|
||||
.r-l{
|
||||
|
||||
.r-l {
|
||||
border-radius: $border-radius-base 0 0 $border-radius-base;
|
||||
}
|
||||
|
||||
.r-r{
|
||||
.r-r {
|
||||
border-radius: 0 $border-radius-base $border-radius-base 0;
|
||||
}
|
||||
|
||||
.r-t{
|
||||
.r-t {
|
||||
border-radius: $border-radius-base $border-radius-base 0 0;
|
||||
}
|
||||
|
||||
.r-b{
|
||||
.r-b {
|
||||
border-radius: 0 0 $border-radius-base $border-radius-base;
|
||||
}
|
||||
.r-n { border-radius: 0 0 0 0; }
|
||||
|
||||
.p-xs { padding: 5px;}
|
||||
.p-s { padding: 10px;}
|
||||
.p-lg { padding: 30px; }
|
||||
.p-l { padding: 16px; }
|
||||
.r-n {
|
||||
border-radius: 0 0 0 0;
|
||||
}
|
||||
|
||||
.p-h-xs { padding-left: 5px; padding-right: 5px; }
|
||||
.p-h-s { padding-left: 10px; padding-right: 10px; }
|
||||
.p-h-l { padding-left: 16px; padding-right: 16px; }
|
||||
.p-h-lg { padding-left: 30px; padding-right: 30px; }
|
||||
.p-xs {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.m-xxs{margin: 2px 4px}
|
||||
.m-xs{margin: 5px;}
|
||||
.m-sm{margin: 10px;}
|
||||
.m{margin: 15px;}
|
||||
.m-md{margin: 20px;}
|
||||
.m-lg{margin: 30px;}
|
||||
.m-xl{margin: 50px;}
|
||||
.m-n{margin: 0 !important}
|
||||
.p-s {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.m-l-none{margin-left: 0}
|
||||
.m-l-xs{margin-left: 5px;}
|
||||
.m-l-sm{margin-left: 10px;}
|
||||
.m-l{margin-left: 15px}
|
||||
.m-l-md{margin-left: 20px;}
|
||||
.m-l-lg{margin-left: 30px;}
|
||||
.m-l-xl{margin-left: 40px;}
|
||||
.p-lg {
|
||||
padding: 30px;
|
||||
}
|
||||
|
||||
.m-l-n-xxs{margin-left: -1px}
|
||||
.m-l-n-xs{margin-left: -5px}
|
||||
.m-l-n-sm{margin-left: -10px}
|
||||
.m-l-n{margin-left: -15px}
|
||||
.m-l-n-md{margin-left: -20px}
|
||||
.m-l-n-lg{margin-left: -30px}
|
||||
.m-l-n-xl{margin-left: -40px}
|
||||
.p-l {
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.m-t-none{margin-top:0}
|
||||
.m-t-xxs{margin-top: 1px;}
|
||||
.m-t-xs{margin-top: 5px;}
|
||||
.m-t-sm{margin-top: 10px;}
|
||||
.m-t{margin-top: 15px}
|
||||
.m-t-md{margin-top: 20px;}
|
||||
.m-t-lg{margin-top: 30px;}
|
||||
.m-t-xl{margin-top: 40px;}
|
||||
.p-h-xs {
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
.m-t-n-xxs{margin-top: -1px}
|
||||
.m-t-n-xs{margin-top: -5px}
|
||||
.m-t-n-sm{margin-top: -10px}
|
||||
.m-t-n{margin-top: -15px}
|
||||
.m-t-n-md{margin-top: -20px}
|
||||
.m-t-n-lg{margin-top: -30px}
|
||||
.m-t-n-xl{margin-top: -40px}
|
||||
.p-h-s {
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.m-r-none{margin-right: 0}
|
||||
.m-r-xxs{margin-right: 1px}
|
||||
.m-r-xs{margin-right: 5px}
|
||||
.m-r-sm{margin-right: 10px}
|
||||
.m-r{margin-right: 15px}
|
||||
.m-r-md{margin-right: 20px}
|
||||
.m-r-lg{margin-right: 30px}
|
||||
.m-r-xl{margin-right: 40px}
|
||||
.p-h-l {
|
||||
padding-left: 16px;
|
||||
padding-right: 16px;
|
||||
}
|
||||
|
||||
.m-r-n-xxs{margin-right: -1px}
|
||||
.m-r-n-xs{margin-right: -5px}
|
||||
.m-r-n-sm{margin-right: -10px}
|
||||
.m-r-n{margin-right: -15px}
|
||||
.m-r-n-md{margin-right: -20px}
|
||||
.m-r-n-lg{margin-right: -30px}
|
||||
.m-r-n-xl{margin-right: -40px}
|
||||
.p-h-lg {
|
||||
padding-left: 30px;
|
||||
padding-right: 30px;
|
||||
}
|
||||
|
||||
.m-b-none{margin-bottom: 0}
|
||||
.m-b-xxs{margin-bottom: 1px;}
|
||||
.m-b-xs{margin-bottom: 5px;}
|
||||
.m-b-sm{margin-bottom: 10px;}
|
||||
.m-b{margin-bottom: 15px;}
|
||||
.m-b-md{margin-bottom: 20px;}
|
||||
.m-b-lg{margin-bottom: 30px;}
|
||||
.m-b-xl{margin-bottom: 40px;}
|
||||
.m-xxs {
|
||||
margin: 2px 4px;
|
||||
}
|
||||
|
||||
.m-b-n-xxs{margin-bottom: -1px}
|
||||
.m-b-n-xs{margin-bottom: -5px}
|
||||
.m-b-n-sm{margin-bottom: -10px}
|
||||
.m-b-n{margin-bottom: -15px}
|
||||
.m-b-n-md{margin-bottom: -20px}
|
||||
.m-b-n-lg{margin-bottom: -30px}
|
||||
.m-b-n-xl{margin-bottom: -40px}
|
||||
.m-xs {
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.m-h-none{margin-left: 0; margin-right: 0;}
|
||||
.m-h-xs{margin-left: 5px; margin-right: 5px;}
|
||||
.m-h-sm{margin-left: 10px; margin-right: 10px;}
|
||||
.m-h{margin-left: 15px; margin-right: 15px;}
|
||||
.m-h-md{margin-left: 20px; margin-right: 20px;}
|
||||
.m-h-lg{margin-left: 30px; margin-right: 30px;}
|
||||
.m-h-xl{margin-left: 40px; margin-right: 40px;}
|
||||
.m-sm {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.media-xs{min-width: 50px}
|
||||
.media-sm{min-width: 80px}
|
||||
.media-md{min-width: 90px}
|
||||
.media-lg{min-width: 120px}
|
||||
.m {
|
||||
margin: 15px;
|
||||
}
|
||||
|
||||
.m-md {
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
.m-lg {
|
||||
margin: 30px;
|
||||
}
|
||||
|
||||
.m-xl {
|
||||
margin: 50px;
|
||||
}
|
||||
|
||||
.m-n {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.m-l-none {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.m-l-xs {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.m-l-sm {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.m-l {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.m-l-md {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.m-l-lg {
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.m-l-xl {
|
||||
margin-left: 40px;
|
||||
}
|
||||
|
||||
.m-l-n-xxs {
|
||||
margin-left: -1px;
|
||||
}
|
||||
|
||||
.m-l-n-xs {
|
||||
margin-left: -5px;
|
||||
}
|
||||
|
||||
.m-l-n-sm {
|
||||
margin-left: -10px;
|
||||
}
|
||||
|
||||
.m-l-n {
|
||||
margin-left: -15px;
|
||||
}
|
||||
|
||||
.m-l-n-md {
|
||||
margin-left: -20px;
|
||||
}
|
||||
|
||||
.m-l-n-lg {
|
||||
margin-left: -30px;
|
||||
}
|
||||
|
||||
.m-l-n-xl {
|
||||
margin-left: -40px;
|
||||
}
|
||||
|
||||
.m-t-none {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.m-t-xxs {
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
.m-t-xs {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.m-t-sm {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.m-t {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.m-t-md {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.m-t-lg {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.m-t-xl {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.m-t-n-xxs {
|
||||
margin-top: -1px;
|
||||
}
|
||||
|
||||
.m-t-n-xs {
|
||||
margin-top: -5px;
|
||||
}
|
||||
|
||||
.m-t-n-sm {
|
||||
margin-top: -10px;
|
||||
}
|
||||
|
||||
.m-t-n {
|
||||
margin-top: -15px;
|
||||
}
|
||||
|
||||
.m-t-n-md {
|
||||
margin-top: -20px;
|
||||
}
|
||||
|
||||
.m-t-n-lg {
|
||||
margin-top: -30px;
|
||||
}
|
||||
|
||||
.m-t-n-xl {
|
||||
margin-top: -40px;
|
||||
}
|
||||
|
||||
.m-r-none {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.m-r-xxs {
|
||||
margin-right: 1px;
|
||||
}
|
||||
|
||||
.m-r-xs {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.m-r-sm {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.m-r {
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.m-r-md {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.m-r-lg {
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
.m-r-xl {
|
||||
margin-right: 40px;
|
||||
}
|
||||
|
||||
.m-r-n-xxs {
|
||||
margin-right: -1px;
|
||||
}
|
||||
|
||||
.m-r-n-xs {
|
||||
margin-right: -5px;
|
||||
}
|
||||
|
||||
.m-r-n-sm {
|
||||
margin-right: -10px;
|
||||
}
|
||||
|
||||
.m-r-n {
|
||||
margin-right: -15px;
|
||||
}
|
||||
|
||||
.m-r-n-md {
|
||||
margin-right: -20px;
|
||||
}
|
||||
|
||||
.m-r-n-lg {
|
||||
margin-right: -30px;
|
||||
}
|
||||
|
||||
.m-r-n-xl {
|
||||
margin-right: -40px;
|
||||
}
|
||||
|
||||
.m-b-none {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.m-b-xxs {
|
||||
margin-bottom: 1px;
|
||||
}
|
||||
|
||||
.m-b-xs {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.m-b-sm {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.m-b {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.m-b-md {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.m-b-lg {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.m-b-xl {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.m-b-n-xxs {
|
||||
margin-bottom: -1px;
|
||||
}
|
||||
|
||||
.m-b-n-xs {
|
||||
margin-bottom: -5px;
|
||||
}
|
||||
|
||||
.m-b-n-sm {
|
||||
margin-bottom: -10px;
|
||||
}
|
||||
|
||||
.m-b-n {
|
||||
margin-bottom: -15px;
|
||||
}
|
||||
|
||||
.m-b-n-md {
|
||||
margin-bottom: -20px;
|
||||
}
|
||||
|
||||
.m-b-n-lg {
|
||||
margin-bottom: -30px;
|
||||
}
|
||||
|
||||
.m-b-n-xl {
|
||||
margin-bottom: -40px;
|
||||
}
|
||||
|
||||
.m-h-none {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.m-h-xs {
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.m-h-sm {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.m-h {
|
||||
margin-left: 15px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.m-h-md {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.m-h-lg {
|
||||
margin-left: 30px;
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
.m-h-xl {
|
||||
margin-left: 40px;
|
||||
margin-right: 40px;
|
||||
}
|
||||
|
||||
.media-xs {
|
||||
min-width: 50px;
|
||||
}
|
||||
|
||||
.media-sm {
|
||||
min-width: 80px;
|
||||
}
|
||||
|
||||
.media-md {
|
||||
min-width: 90px;
|
||||
}
|
||||
|
||||
.media-lg {
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.thumb-38 {
|
||||
width: 38px !important;
|
||||
height: 38px;
|
||||
}
|
||||
|
||||
.thumb-50 {
|
||||
width: 50px !important;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.thumb-128 {
|
||||
width: 128px !important;
|
||||
height: 128px;
|
||||
}
|
||||
|
||||
.thumb-140 {
|
||||
width: 140px !important;
|
||||
height: 140px;
|
||||
}
|
||||
|
||||
.thumb-38 { width: 38px !important; height: 38px; }
|
||||
.thumb-50 { width: 50px !important; height: 50px; }
|
||||
.thumb-128 { width: 128px !important; height: 128px; }
|
||||
.thumb-140 { width: 140px !important; height: 140px; }
|
||||
.thumb-128-wrapper {
|
||||
img {
|
||||
width: 128px !important; height: 128px;
|
||||
@extend .img-circle;
|
||||
}
|
||||
}
|
||||
.thumb-140-wrapper {
|
||||
img {
|
||||
width: 140px !important; height: 140px;
|
||||
width: 128px !important;
|
||||
height: 128px;
|
||||
|
||||
@extend .img-circle;
|
||||
}
|
||||
}
|
||||
|
||||
.thumb-lg{width: 128px;display: inline-block}
|
||||
.thumb-md{width: 64px;display: inline-block}
|
||||
.thumb{width: 50px;display: inline-block}
|
||||
.thumb-sm{width: 34px;display: inline-block}
|
||||
.thumb-xs{width: 24px;display: inline-block}
|
||||
.thumb-wrapper{padding: 2px; border: 1px solid #ddd}
|
||||
.thumb-140-wrapper {
|
||||
img {
|
||||
width: 140px !important;
|
||||
height: 140px;
|
||||
|
||||
@extend .img-circle;
|
||||
}
|
||||
}
|
||||
|
||||
.thumb-lg {
|
||||
width: 128px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.thumb-md {
|
||||
width: 64px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.thumb {
|
||||
width: 50px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.thumb-sm {
|
||||
width: 34px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.thumb-xs {
|
||||
width: 24px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.thumb-wrapper {
|
||||
padding: 2px;
|
||||
border: 1px solid #ddd;
|
||||
}
|
||||
|
||||
.thumb img,
|
||||
.thumb-xs img,
|
||||
.thumb-sm img,
|
||||
.thumb-md img,
|
||||
.thumb-lg img,
|
||||
.thumb-btn img{
|
||||
.thumb-btn img {
|
||||
// height: auto;
|
||||
// max-width: 100%;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.img-full{
|
||||
|
||||
.img-full {
|
||||
max-width: 100%;
|
||||
> img{
|
||||
|
||||
> img {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.fa-img {
|
||||
display: inline-block;
|
||||
height: 0.9em;
|
||||
@ -331,36 +902,57 @@ p, .widget p {
|
||||
line-height: 1.7em !important;
|
||||
}
|
||||
|
||||
.contrast-250 { -webkit-filter: contrast(250%); filter: contrast(250%); }
|
||||
.clear{display:block;overflow: hidden;}
|
||||
.contrast-250 {
|
||||
-webkit-filter: contrast(250%);
|
||||
filter: contrast(250%);
|
||||
}
|
||||
|
||||
.clear {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.scroll-x, .scroll-y {
|
||||
overflow: hidden;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
.scroll-y {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.scroll-x {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.scroll-x, .scroll-y{overflow:hidden;-webkit-overflow-scrolling:touch;}
|
||||
.scroll-y{overflow-y:auto;}
|
||||
.scroll-x{overflow-x:auto;}
|
||||
.no-touch {
|
||||
.scroll-x,
|
||||
.scroll-y{
|
||||
.scroll-y {
|
||||
overflow: hidden;
|
||||
}
|
||||
.scroll-x{
|
||||
|
||||
.scroll-x {
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active{
|
||||
&:active {
|
||||
overflow-x: auto;
|
||||
}
|
||||
}
|
||||
.scroll-y{
|
||||
|
||||
.scroll-y {
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active{
|
||||
&:active {
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
.hover-action{
|
||||
|
||||
.hover-action {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.hover:hover {
|
||||
.hover-action{
|
||||
.hover-action {
|
||||
display: inherit;
|
||||
}
|
||||
}
|
||||
@ -368,7 +960,7 @@ p, .widget p {
|
||||
|
||||
.exponent {
|
||||
font-size: 0.7em;
|
||||
vertical-align: super
|
||||
vertical-align: super;
|
||||
}
|
||||
|
||||
.help-cursor {
|
||||
@ -385,33 +977,76 @@ p, .widget p {
|
||||
}
|
||||
|
||||
@media screen and (min-width: $screen-lg-min) {
|
||||
.b-r-lg {border-right: 1px solid $border-color; }
|
||||
.hide-b-r-lg { border: none !important; }
|
||||
.b-r-lg {
|
||||
border-right: 1px solid $border-color;
|
||||
}
|
||||
|
||||
.hide-b-r-lg {
|
||||
border: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*desktop*/
|
||||
@media screen and (min-width: $screen-md-min) {
|
||||
.b-r-md {border-right: 1px solid $border-color; }
|
||||
.col-lg-2-4{width: 20.000%;float: left;}
|
||||
.b-r-md {
|
||||
border-right: 1px solid $border-color;
|
||||
}
|
||||
|
||||
.hide-b-md { border: none; }
|
||||
.col-lg-2-4 {
|
||||
width: 20.000%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.hide-b-md {
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
|
||||
/*phone*/
|
||||
@media (max-width: 767px) {
|
||||
.shift{display: none !important;}
|
||||
.shift.in{display: block !important;}
|
||||
.row-2 [class*="col"]{width: 50%;float: left}
|
||||
.row-2 .col-0{clear: none}
|
||||
.row-2 li:nth-child(odd) { clear: left;margin-left: 0}
|
||||
.text-center-xs{text-align: center;}
|
||||
.text-left-xs{text-align: left;}
|
||||
.pull-none-xs{float: none !important;}
|
||||
.dropdown-menu.pull-none-xs{left: 0;}
|
||||
.hidden-xs.show{display: inherit !important;}
|
||||
.wrapper-lg{padding: 15px;}
|
||||
.shift {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.shift.in {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
.row-2 [class*="col"] {
|
||||
width: 50%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.row-2 .col-0 {
|
||||
clear: none;
|
||||
}
|
||||
|
||||
.row-2 li:nth-child(odd) {
|
||||
clear: left;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.text-center-xs {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.text-left-xs {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.pull-none-xs {
|
||||
float: none !important;
|
||||
}
|
||||
|
||||
.dropdown-menu.pull-none-xs {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.hidden-xs.show {
|
||||
display: inherit !important;
|
||||
}
|
||||
|
||||
.wrapper-lg {
|
||||
padding: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
1041
app/assets/stylesheets/bootstrap_and_overrides.scss
vendored
1041
app/assets/stylesheets/bootstrap_and_overrides.scss
vendored
@ -1,60 +1,70 @@
|
||||
// a flag to toggle asset pipeline / compass integration
|
||||
// defaults to true if twbs-font-path function is present (no function => twbs-font-path('') parsed as string == right side)
|
||||
// in Sass 3.3 this can be improved with: function-exists(twbs-font-path)
|
||||
$bootstrap-sass-asset-helper: (twbs-font-path("") != unquote('twbs-font-path("")')) !default;
|
||||
$bootstrap-sass-asset-helper: twbs-font-path("") != unquote('twbs-font-path("")') !default;
|
||||
|
||||
//
|
||||
// Variables
|
||||
// --------------------------------------------------
|
||||
|
||||
|
||||
//== Colors
|
||||
//
|
||||
//## Gray and brand colors for use across Bootstrap.
|
||||
|
||||
$gray-darker: lighten(#000, 13.5%) !default; // #222
|
||||
$gray-dark: lighten(#000, 20%) !default; // #333
|
||||
$gray: lighten(#000, 33.5%) !default; // #555
|
||||
$gray-light: lighten(#000, 60%) !default; // #999
|
||||
$gray-lighter: lighten(#000, 93.5%) !default; // #eee
|
||||
$gray-darker: lighten(#000, 13.5%) !default;
|
||||
|
||||
$brand-primary: #d92227 !default;
|
||||
$brand-success: #7bca38 !default;
|
||||
$brand-info: #1d98ec !default;
|
||||
$brand-warning: #fdde3f !default;
|
||||
$brand-danger: $brand-primary !default;
|
||||
// #222
|
||||
$gray-dark: lighten(#000, 20%) !default;
|
||||
|
||||
// #333
|
||||
$gray: lighten(#000, 33.5%) !default;
|
||||
|
||||
// #555
|
||||
$gray-light: lighten(#000, 60%) !default;
|
||||
|
||||
// #999
|
||||
$gray-lighter: lighten(#000, 93.5%) !default;
|
||||
|
||||
// #eee
|
||||
|
||||
$brand-primary: #d92227 !default;
|
||||
$brand-success: #7bca38 !default;
|
||||
$brand-info: #1d98ec !default;
|
||||
$brand-warning: #fdde3f !default;
|
||||
$brand-danger: $brand-primary !default;
|
||||
|
||||
// ADD by sleede ------------------
|
||||
$brand-black: #12131a;
|
||||
$brand-dark: #222733;
|
||||
$brand-light: #f4f3f3; //#f1f3f7
|
||||
$brand-inverse: #433599;
|
||||
$brand-black: #12131a;
|
||||
$brand-dark: #222733;
|
||||
$brand-light: #f4f3f3;
|
||||
|
||||
$black-light: #444444;
|
||||
//#f1f3f7
|
||||
$brand-inverse: #433599;
|
||||
|
||||
$bg-gray: #f5f5f5;
|
||||
$black-light: #444444;
|
||||
|
||||
$red-dark: #cb1117;
|
||||
$red: $red-dark;
|
||||
$red-light: #e13f45;
|
||||
$bg-gray: #f5f5f5;
|
||||
|
||||
$yellow: #fd0;
|
||||
$blue: $brand-info;
|
||||
$green: $brand-success;
|
||||
$beige: #e4cd78;
|
||||
$violet: #bd7ae9;
|
||||
$cyan: #3fc7ff;
|
||||
$red-dark: #cb1117;
|
||||
$red: $red-dark;
|
||||
$red-light: #e13f45;
|
||||
|
||||
$yellow: #fd0;
|
||||
$blue: $brand-info;
|
||||
$green: $brand-success;
|
||||
$beige: #e4cd78;
|
||||
$violet: #bd7ae9;
|
||||
$cyan: #3fc7ff;
|
||||
$japonica: #dd7e6b;
|
||||
|
||||
$border-color: #dddddd;
|
||||
$header-bg: $bg-gray;
|
||||
|
||||
$off-screen-nav-width: 75%;
|
||||
$nav-primary-height: 36px;
|
||||
$nav-xs-width: 90px;
|
||||
$nav-xs-height: 50px;
|
||||
$header-md-height: 73px;
|
||||
$border-color: #dddddd;
|
||||
$header-bg: $bg-gray;
|
||||
|
||||
$off-screen-nav-width: 75%;
|
||||
$nav-primary-height: 36px;
|
||||
$nav-xs-width: 90px;
|
||||
$nav-xs-height: 50px;
|
||||
$header-md-height: 73px;
|
||||
|
||||
//------------------------------------------
|
||||
|
||||
@ -63,14 +73,17 @@ $header-md-height: 73px;
|
||||
//## Settings for some of the most global styles.
|
||||
|
||||
//** Background color for `<body>`.
|
||||
$body-bg: #fff !default;
|
||||
$body-bg: #fff !default;
|
||||
|
||||
//** Global text color on `<body>`.
|
||||
$text-color: black !default;
|
||||
$text-color: black !default;
|
||||
|
||||
//** Global textual link color.
|
||||
$link-color: #cb1117 !default;
|
||||
$link-color: #cb1117 !default;
|
||||
|
||||
//** Link hover color set via `darken()` function.
|
||||
$link-hover-color: #840b0f !default;
|
||||
$link-hover-color: #840b0f !default;
|
||||
|
||||
//** Link hover decoration.
|
||||
$link-hover-decoration: underline;
|
||||
|
||||
@ -80,52 +93,75 @@ $link-hover-decoration: underline;
|
||||
|
||||
// Semibold = 600, Bold = 700, ExtraB = 800
|
||||
|
||||
$font-family-sans-serif: 'proxima-nova', 'Open Sans', Helvetica, Arial, sans-serif !default;
|
||||
$font-proxima-condensed: 'proxima-nova-condensed', 'Open Sans Condensed', Helvetica, Arial, sans-serif !default;
|
||||
$font-family-serif: Georgia, 'Times New Roman', Times, serif !default;
|
||||
$font-felt: 'felt-tip-roman', 'Loved by the King', cursive, sans-serif;
|
||||
$font-family-sans-serif: "proxima-nova", "Open Sans", Helvetica, Arial, sans-serif !default;
|
||||
$font-proxima-condensed: "proxima-nova-condensed", "Open Sans Condensed", Helvetica, Arial, sans-serif !default;
|
||||
$font-family-serif: Georgia, "Times New Roman", Times, serif !default;
|
||||
$font-felt: "felt-tip-roman", "Loved by the King", cursive, sans-serif;
|
||||
|
||||
//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
|
||||
// $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
|
||||
|
||||
$font-family-base: $font-family-sans-serif !default;
|
||||
$font-family-monospace: $font-family-base;
|
||||
$font-family-base: $font-family-sans-serif !default;
|
||||
$font-family-monospace: $font-family-base;
|
||||
|
||||
$font-size-base: 16px !default;
|
||||
$font-size-large: ceil(($font-size-base * 1.125)) !default; // ~18px
|
||||
$font-size-medium: ceil(($font-size-base * 0.875)) !default; // ~14px
|
||||
$font-size-small: ceil(($font-size-base * 0.75)) !default; // ~12px
|
||||
$font-size-base: 16px !default;
|
||||
$font-size-large: ceil($font-size-base * 1.125) !default;
|
||||
|
||||
// ~18px
|
||||
$font-size-medium: ceil($font-size-base * 0.875) !default;
|
||||
|
||||
// ~14px
|
||||
$font-size-small: ceil($font-size-base * 0.75) !default;
|
||||
|
||||
// ~12px
|
||||
|
||||
//add sleede
|
||||
$font-size-xl: rem-calc(32);
|
||||
$font-size-lg: rem-calc(20);
|
||||
$font-size-md: rem-calc(18);
|
||||
$font-size-sm: rem-calc(14);
|
||||
$font-size-xs: rem-calc(12); // ~11px
|
||||
$font-size-xl: rem-calc(32);
|
||||
$font-size-lg: rem-calc(20);
|
||||
$font-size-md: rem-calc(18);
|
||||
$font-size-sm: rem-calc(14);
|
||||
$font-size-xs: rem-calc(12);
|
||||
|
||||
$font-size-h1: rem-calc(24) !default; // ~24px
|
||||
$font-size-h2: rem-calc(20) !default; // ~20px
|
||||
$font-size-h3: rem-calc(18) !default; // ~18px
|
||||
$font-size-h4: rem-calc(16) !default; // ~16px
|
||||
$font-size-h5: rem-calc(14) !default; // ~14px
|
||||
$font-size-h6: rem-calc(12) !default; // ~12px
|
||||
// ~11px
|
||||
|
||||
$font-size-h1: rem-calc(24) !default;
|
||||
|
||||
// ~24px
|
||||
$font-size-h2: rem-calc(20) !default;
|
||||
|
||||
// ~20px
|
||||
$font-size-h3: rem-calc(18) !default;
|
||||
|
||||
// ~18px
|
||||
$font-size-h4: rem-calc(16) !default;
|
||||
|
||||
// ~16px
|
||||
$font-size-h5: rem-calc(14) !default;
|
||||
|
||||
// ~14px
|
||||
$font-size-h6: rem-calc(12) !default;
|
||||
|
||||
// ~12px
|
||||
|
||||
//** Unit-less `line-height` for use in components like buttons.
|
||||
$line-height-base: 1.5 !default; // 24/16
|
||||
$line-height-base: 1.5 !default;
|
||||
|
||||
// 24/16
|
||||
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
|
||||
$line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
|
||||
$line-height-computed: floor($font-size-base * $line-height-base) !default;
|
||||
|
||||
// ~20px
|
||||
|
||||
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
|
||||
$line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
|
||||
$line-height-computed: floor($font-size-base * $line-height-base) !default;
|
||||
|
||||
// ~20px
|
||||
|
||||
//** By default, this inherits from the `<body>`.
|
||||
$headings-font-family: $font-family-base !default;
|
||||
$headings-font-weight: 400 !default;
|
||||
$headings-line-height: 1.5 !default;
|
||||
$headings-color: black !default;
|
||||
|
||||
$headings-font-family: $font-family-base !default;
|
||||
$headings-font-weight: 400 !default;
|
||||
$headings-line-height: 1.5 !default;
|
||||
$headings-color: black !default;
|
||||
|
||||
//== Iconography
|
||||
//
|
||||
@ -133,148 +169,161 @@ $headings-color: black !default;
|
||||
|
||||
//** Load fonts from this directory.
|
||||
$icon-font-path: "bootstrap/" !default;
|
||||
|
||||
//** File name for all font files.
|
||||
$icon-font-name: "glyphicons-halflings-regular" !default;
|
||||
$icon-font-name: "glyphicons-halflings-regular" !default;
|
||||
|
||||
//** Element ID within SVG icon file.
|
||||
$icon-font-svg-id: "glyphicons_halflingsregular" !default;
|
||||
|
||||
$icon-css-prefix: fa;
|
||||
$icon-font-svg-id: "glyphicons_halflingsregular" !default;
|
||||
|
||||
$icon-css-prefix: fa;
|
||||
|
||||
//== Components
|
||||
//
|
||||
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
|
||||
|
||||
$padding-base-vertical: 6px !default;
|
||||
$padding-base-horizontal: 12px !default;
|
||||
$padding-base-vertical: 6px !default;
|
||||
$padding-base-horizontal: 12px !default;
|
||||
|
||||
$padding-large-vertical: 10px !default;
|
||||
$padding-large-horizontal: 16px !default;
|
||||
$padding-large-vertical: 10px !default;
|
||||
$padding-large-horizontal: 16px !default;
|
||||
|
||||
$padding-small-vertical: 5px !default;
|
||||
$padding-small-horizontal: 10px !default;
|
||||
$padding-small-vertical: 5px !default;
|
||||
$padding-small-horizontal: 10px !default;
|
||||
|
||||
$padding-xs-vertical: 1px !default;
|
||||
$padding-xs-horizontal: 5px !default;
|
||||
$padding-xs-vertical: 1px !default;
|
||||
$padding-xs-horizontal: 5px !default;
|
||||
|
||||
$line-height-large: 1.33 !default;
|
||||
$line-height-small: 1.5 !default;
|
||||
$line-height-large: 1.33 !default;
|
||||
$line-height-small: 1.5 !default;
|
||||
|
||||
$border-radius-base: 4px !default;
|
||||
$border-radius-large: 6px !default;
|
||||
$border-radius-small: 3px !default;
|
||||
$border-radius-base: 4px !default;
|
||||
$border-radius-large: 6px !default;
|
||||
$border-radius-small: 3px !default;
|
||||
|
||||
//** Global color for active items (e.g., navs or dropdowns).
|
||||
$component-active-color: #fff !default;
|
||||
$component-active-color: #fff !default;
|
||||
|
||||
//** Global background color for active items (e.g., navs or dropdowns).
|
||||
$component-active-bg: $gray-lighter !default;
|
||||
$component-active-bg: $gray-lighter !default;
|
||||
|
||||
//** Width of the `border` for generating carets that indicator dropdowns.
|
||||
$caret-width-base: 4px !default;
|
||||
//** Carets increase slightly in size for larger components.
|
||||
$caret-width-large: 5px !default;
|
||||
$caret-width-base: 4px !default;
|
||||
|
||||
//** Carets increase slightly in size for larger components.
|
||||
$caret-width-large: 5px !default;
|
||||
|
||||
//== Tables
|
||||
//
|
||||
//## Customizes the `.table` component with basic values, each used across all table variations.
|
||||
|
||||
//** Padding for `<th>`s and `<td>`s.
|
||||
$table-cell-padding: 8px !default;
|
||||
$table-cell-padding: 8px !default;
|
||||
|
||||
//** Padding for cells in `.table-condensed`.
|
||||
$table-condensed-cell-padding: 5px !default;
|
||||
$table-condensed-cell-padding: 5px !default;
|
||||
|
||||
//** Default background color used for all tables.
|
||||
$table-bg: transparent !default;
|
||||
$table-bg: transparent !default;
|
||||
|
||||
//** Background color used for `.table-striped`.
|
||||
$table-bg-accent: #f9f9f9 !default;
|
||||
$table-bg-accent: #f9f9f9 !default;
|
||||
|
||||
//** Background color used for `.table-hover`.
|
||||
$table-bg-hover: $bg-gray !default;
|
||||
$table-bg-active: $table-bg-hover !default;
|
||||
$table-bg-hover: $bg-gray !default;
|
||||
$table-bg-active: $table-bg-hover !default;
|
||||
|
||||
//** Border color for table and cell borders.
|
||||
$table-border-color: #ddd !default;
|
||||
|
||||
$table-border-color: #ddd !default;
|
||||
|
||||
//== Buttons
|
||||
//
|
||||
//## For each of Bootstrap's buttons, define text, background and border color.
|
||||
|
||||
$btn-font-weight: normal !default;
|
||||
$btn-font-weight: normal !default;
|
||||
|
||||
$btn-default-color: $text-color !default;
|
||||
$btn-default-bg: lighten($brand-light, 3%) !default;
|
||||
$btn-default-border: darken($border-color, 8%) !default;
|
||||
$btn-default-color: $text-color !default;
|
||||
$btn-default-bg: lighten($brand-light, 3%) !default;
|
||||
$btn-default-border: darken($border-color, 8%) !default;
|
||||
|
||||
$btn-primary-color: #fff !default;;
|
||||
$btn-primary-bg: $brand-primary !default;;
|
||||
$btn-primary-border: $btn-primary-bg !default;;
|
||||
$btn-primary-color: #fff !default;
|
||||
$btn-primary-bg: $brand-primary !default;
|
||||
$btn-primary-border: $btn-primary-bg !default;
|
||||
|
||||
$btn-success-color: #fff !default;
|
||||
$btn-success-bg: $brand-success !default;
|
||||
$btn-success-border: $btn-success-bg !default;
|
||||
$btn-success-color: #fff !default;
|
||||
$btn-success-bg: $brand-success !default;
|
||||
$btn-success-border: $btn-success-bg !default;
|
||||
|
||||
$btn-info-color: #fff !default;
|
||||
$btn-info-bg: $brand-info !default;
|
||||
$btn-info-border: $btn-info-bg !default;
|
||||
$btn-info-color: #fff !default;
|
||||
$btn-info-bg: $brand-info !default;
|
||||
$btn-info-border: $btn-info-bg !default;
|
||||
|
||||
$btn-warning-color: #000 !default;
|
||||
$btn-warning-bg: $brand-warning !default;
|
||||
$btn-warning-border: $btn-warning-bg !default;
|
||||
$btn-warning-color: #000 !default;
|
||||
$btn-warning-bg: $brand-warning !default;
|
||||
$btn-warning-border: $btn-warning-bg !default;
|
||||
|
||||
$btn-danger-color: #fff !default;
|
||||
$btn-danger-bg: $red !default;
|
||||
$btn-danger-border: $btn-default-border !default;
|
||||
$btn-danger-color: #fff !default;
|
||||
$btn-danger-bg: $red !default;
|
||||
$btn-danger-border: $btn-default-border !default;
|
||||
|
||||
$btn-link-disabled-color: $gray-light !default;
|
||||
$btn-link-disabled-color: $gray-light !default;
|
||||
|
||||
// Allows for customizing button radius independently from global border radius
|
||||
$btn-border-radius-base: $border-radius-base;
|
||||
$btn-border-radius-large: $border-radius-large;
|
||||
$btn-border-radius-small: $border-radius-small;
|
||||
|
||||
$btn-border-radius-base: $border-radius-base;
|
||||
$btn-border-radius-large: $border-radius-large;
|
||||
$btn-border-radius-small: $border-radius-small;
|
||||
|
||||
//== Forms
|
||||
//
|
||||
//##
|
||||
|
||||
//** `<input>` background color
|
||||
$input-bg: #fff !default;
|
||||
$input-bg: #fff !default;
|
||||
|
||||
//** `<input disabled>` background color
|
||||
$input-bg-disabled: $gray-lighter !default;
|
||||
$input-bg-disabled: $gray-lighter !default;
|
||||
|
||||
//** Text color for `<input>`s
|
||||
$input-color: $gray !default;
|
||||
$input-color: $gray !default;
|
||||
|
||||
//** `<input>` border color
|
||||
$input-border: darken($border-color, 10%) !default;
|
||||
$input-border: darken($border-color, 10%) !default;
|
||||
|
||||
//** `<input>` border radius
|
||||
$input-border-radius: $border-radius-base !default;
|
||||
$input-border-radius: $border-radius-base !default;
|
||||
|
||||
//** Border color for inputs on focus
|
||||
$input-border-focus: $brand-warning !default;
|
||||
$input-border-focus: $brand-warning !default;
|
||||
|
||||
//** Large `.form-control` border radius
|
||||
$input-border-radius-large: $border-radius-large;
|
||||
$input-border-radius-large: $border-radius-large;
|
||||
|
||||
//** Small `.form-control` border radius
|
||||
$input-border-radius-small: $border-radius-small;
|
||||
$input-border-radius-small: $border-radius-small;
|
||||
|
||||
//** Placeholder text color
|
||||
$input-color-placeholder: $gray-light !default;
|
||||
$input-color-placeholder: $gray-light !default;
|
||||
|
||||
//** Default `.form-control` height
|
||||
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
|
||||
//** Large `.form-control` height
|
||||
$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
|
||||
//** Small `.form-control` height
|
||||
$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
|
||||
$input-height-base: $line-height-computed + $padding-base-vertical * 2 + 2 !default;
|
||||
|
||||
$legend-color: $gray-dark !default;
|
||||
$legend-border-color: #e5e5e5 !default;
|
||||
//** Large `.form-control` height
|
||||
$input-height-large: ceil($font-size-large * $line-height-large) + $padding-large-vertical * 2 + 2 !default;
|
||||
|
||||
//** Small `.form-control` height
|
||||
$input-height-small: floor($font-size-small * $line-height-small) + $padding-small-vertical * 2 + 2 !default;
|
||||
|
||||
$legend-color: $gray-dark !default;
|
||||
$legend-border-color: #e5e5e5 !default;
|
||||
|
||||
//** Background color for textual input addons
|
||||
$input-group-addon-bg: $gray-lighter !default;
|
||||
$input-group-addon-bg: $gray-lighter !default;
|
||||
|
||||
//** Border color for textual input addons
|
||||
$input-group-addon-border-color: $input-border !default;
|
||||
|
||||
//** Disabled cursor for form controls and buttons.
|
||||
$cursor-disabled: not-allowed;
|
||||
$cursor-disabled: not-allowed;
|
||||
$form-group-margin-bottom: 15px !default;
|
||||
|
||||
//== Dropdowns
|
||||
@ -282,35 +331,40 @@ $form-group-margin-bottom: 15px !default;
|
||||
//## Dropdown menu container and contents.
|
||||
|
||||
//** Background for the dropdown menu.
|
||||
$dropdown-bg: #fff !default;
|
||||
$dropdown-bg: #fff !default;
|
||||
|
||||
//** Dropdown menu `border-color`.
|
||||
$dropdown-border: rgba(0,0,0,.15) !default;
|
||||
$dropdown-border: rgba(0, 0, 0, 0.15) !default;
|
||||
|
||||
//** Dropdown menu `border-color` **for IE8**.
|
||||
$dropdown-fallback-border: #ccc !default;
|
||||
$dropdown-fallback-border: #ccc !default;
|
||||
|
||||
//** Divider color for between dropdown items.
|
||||
$dropdown-divider-bg: #e5e5e5 !default;
|
||||
$dropdown-divider-bg: #e5e5e5 !default;
|
||||
|
||||
//** Dropdown link text color.
|
||||
$dropdown-link-color: $gray-dark !default;
|
||||
$dropdown-link-color: $gray-dark !default;
|
||||
|
||||
//** Hover color for dropdown links.
|
||||
$dropdown-link-hover-color: darken($gray-dark, 5%) !default;
|
||||
$dropdown-link-hover-color: darken($gray-dark, 5%) !default;
|
||||
|
||||
//** Hover background for dropdown links.
|
||||
$dropdown-link-hover-bg: $bg-gray !default;
|
||||
$dropdown-link-hover-bg: $bg-gray !default;
|
||||
|
||||
//** Active dropdown menu item text color.
|
||||
$dropdown-link-active-color: $component-active-color !default;
|
||||
$dropdown-link-active-color: $component-active-color !default;
|
||||
|
||||
//** Active dropdown menu item background color.
|
||||
$dropdown-link-active-bg: $component-active-bg !default;
|
||||
$dropdown-link-active-bg: $component-active-bg !default;
|
||||
|
||||
//** Disabled dropdown menu item background color.
|
||||
$dropdown-link-disabled-color: $gray-light !default;
|
||||
$dropdown-link-disabled-color: $gray-light !default;
|
||||
|
||||
//** Text color for headers within dropdown menus.
|
||||
$dropdown-header-color: $gray-light !default;
|
||||
$dropdown-header-color: $gray-light !default;
|
||||
|
||||
//** Deprecated `$dropdown-caret-color` as of v3.1.0
|
||||
$dropdown-caret-color: #000 !default;
|
||||
|
||||
$dropdown-caret-color: #000 !default;
|
||||
|
||||
//-- Z-index master list
|
||||
//
|
||||
@ -319,14 +373,13 @@ $dropdown-caret-color: #000 !default;
|
||||
//
|
||||
// Note: These variables are not generated into the Customizer.
|
||||
|
||||
$zindex-navbar: 1000 !default;
|
||||
$zindex-dropdown: 1000 !default;
|
||||
$zindex-popover: 1060 !default;
|
||||
$zindex-tooltip: 1070 !default;
|
||||
$zindex-navbar-fixed: 1030 !default;
|
||||
$zindex-modal-background: 1040 !default;
|
||||
$zindex-modal: 1050 !default;
|
||||
|
||||
$zindex-navbar: 1000 !default;
|
||||
$zindex-dropdown: 1000 !default;
|
||||
$zindex-popover: 1060 !default;
|
||||
$zindex-tooltip: 1070 !default;
|
||||
$zindex-navbar-fixed: 1030 !default;
|
||||
$zindex-modal-background: 1040 !default;
|
||||
$zindex-modal: 1050 !default;
|
||||
|
||||
//== Media queries breakpoints
|
||||
//
|
||||
@ -334,608 +387,648 @@ $zindex-modal: 1050 !default;
|
||||
|
||||
// Extra small screen / phone
|
||||
//** Deprecated `$screen-xs` as of v3.0.1
|
||||
$screen-xs: 480px !default;
|
||||
$screen-xs: 480px !default;
|
||||
|
||||
//** Deprecated `$screen-xs-min` as of v3.2.0
|
||||
$screen-xs-min: $screen-xs !default;
|
||||
$screen-xs-min: $screen-xs !default;
|
||||
|
||||
//** Deprecated `$screen-phone` as of v3.0.1
|
||||
$screen-phone: $screen-xs-min !default;
|
||||
$screen-phone: $screen-xs-min !default;
|
||||
|
||||
// Small screen / tablet
|
||||
//** Deprecated `$screen-sm` as of v3.0.1
|
||||
$screen-sm: 768px !default;
|
||||
$screen-sm-min: $screen-sm !default;
|
||||
$screen-sm: 768px !default;
|
||||
$screen-sm-min: $screen-sm !default;
|
||||
|
||||
//** Deprecated `$screen-tablet` as of v3.0.1
|
||||
$screen-tablet: $screen-sm-min !default;
|
||||
$screen-tablet: $screen-sm-min !default;
|
||||
|
||||
// Medium screen / desktop
|
||||
//** Deprecated `$screen-md` as of v3.0.1
|
||||
$screen-md: 992px !default;
|
||||
$screen-md-min: $screen-md !default;
|
||||
$screen-md: 992px !default;
|
||||
$screen-md-min: $screen-md !default;
|
||||
|
||||
//** Deprecated `$screen-desktop` as of v3.0.1
|
||||
$screen-desktop: $screen-md-min !default;
|
||||
$screen-desktop: $screen-md-min !default;
|
||||
|
||||
// Large screen / wide desktop
|
||||
//** Deprecated `$screen-lg` as of v3.0.1
|
||||
$screen-lg: 1200px !default;
|
||||
$screen-lg-min: $screen-lg !default;
|
||||
$screen-lg: 1200px !default;
|
||||
$screen-lg-min: $screen-lg !default;
|
||||
|
||||
//** Deprecated `$screen-lg-desktop` as of v3.0.1
|
||||
$screen-lg-desktop: $screen-lg-min !default;
|
||||
$screen-lg-desktop: $screen-lg-min !default;
|
||||
|
||||
// So media queries don't overlap when required, provide a maximum
|
||||
$screen-xs-max: ($screen-sm-min - 1) !default;
|
||||
$screen-sm-max: ($screen-md-min - 1) !default;
|
||||
$screen-md-max: ($screen-lg-min - 1) !default;
|
||||
|
||||
$screen-xs-max: $screen-sm-min - 1 !default;
|
||||
$screen-sm-max: $screen-md-min - 1 !default;
|
||||
$screen-md-max: $screen-lg-min - 1 !default;
|
||||
|
||||
//== Grid system
|
||||
//
|
||||
//## Define your custom responsive grid.
|
||||
|
||||
//** Number of columns in the grid.
|
||||
$grid-columns: 12 !default;
|
||||
$grid-columns: 12 !default;
|
||||
|
||||
//** Padding between columns. Gets divided in half for the left and right.
|
||||
$grid-gutter-width: 30px !default;
|
||||
$grid-gutter-width: 30px !default;
|
||||
|
||||
// Navbar collapse
|
||||
//** Point at which the navbar becomes uncollapsed.
|
||||
$grid-float-breakpoint: $screen-sm-min !default;
|
||||
//** Point at which the navbar begins collapsing.
|
||||
$grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
|
||||
$grid-float-breakpoint: $screen-sm-min !default;
|
||||
|
||||
//** Point at which the navbar begins collapsing.
|
||||
$grid-float-breakpoint-max: $grid-float-breakpoint - 1 !default;
|
||||
|
||||
//== Container sizes
|
||||
//
|
||||
//## Define the maximum width of `.container` for different screen sizes.
|
||||
|
||||
// Small screen / tablet
|
||||
$container-tablet: ((720px + $grid-gutter-width)) !default;
|
||||
$container-tablet: 720px + $grid-gutter-width !default;
|
||||
|
||||
//** For `$screen-sm-min` and up.
|
||||
$container-sm: $container-tablet !default;
|
||||
$container-sm: $container-tablet !default;
|
||||
|
||||
// Medium screen / desktop
|
||||
$container-desktop: ((940px + $grid-gutter-width)) !default;
|
||||
$container-desktop: 940px + $grid-gutter-width !default;
|
||||
|
||||
//** For `$screen-md-min` and up.
|
||||
$container-md: $container-desktop !default;
|
||||
$container-md: $container-desktop !default;
|
||||
|
||||
// Large screen / wide desktop
|
||||
$container-large-desktop: ((1140px + $grid-gutter-width)) !default;
|
||||
//** For `$screen-lg-min` and up.
|
||||
$container-lg: $container-large-desktop !default;
|
||||
$container-large-desktop: 1140px + $grid-gutter-width !default;
|
||||
|
||||
//** For `$screen-lg-min` and up.
|
||||
$container-lg: $container-large-desktop !default;
|
||||
|
||||
//== Navbar
|
||||
//
|
||||
//##
|
||||
|
||||
// Basics of a navbar
|
||||
$navbar-height: 50px !default;
|
||||
$navbar-margin-bottom: $line-height-computed !default;
|
||||
$navbar-border-radius: $border-radius-base !default;
|
||||
$navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
|
||||
$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
|
||||
$navbar-collapse-max-height: 340px !default;
|
||||
$navbar-height: 50px !default;
|
||||
$navbar-margin-bottom: $line-height-computed !default;
|
||||
$navbar-border-radius: $border-radius-base !default;
|
||||
$navbar-padding-horizontal: floor($grid-gutter-width / 2) !default;
|
||||
$navbar-padding-vertical: ($navbar-height - $line-height-computed) / 2 !default;
|
||||
$navbar-collapse-max-height: 340px !default;
|
||||
|
||||
$navbar-default-color: #777 !default;
|
||||
$navbar-default-bg: #f8f8f8 !default;
|
||||
$navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
|
||||
$navbar-default-color: #777 !default;
|
||||
$navbar-default-bg: #f8f8f8 !default;
|
||||
$navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
|
||||
|
||||
// Navbar links
|
||||
$navbar-default-link-color: #777 !default;
|
||||
$navbar-default-link-hover-color: #333 !default;
|
||||
$navbar-default-link-hover-bg: transparent !default;
|
||||
$navbar-default-link-active-color: #555 !default;
|
||||
$navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%) !default;
|
||||
$navbar-default-link-disabled-color: #ccc !default;
|
||||
$navbar-default-link-disabled-bg: transparent !default;
|
||||
$navbar-default-link-color: #777 !default;
|
||||
$navbar-default-link-hover-color: #333 !default;
|
||||
$navbar-default-link-hover-bg: transparent !default;
|
||||
$navbar-default-link-active-color: #555 !default;
|
||||
$navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%) !default;
|
||||
$navbar-default-link-disabled-color: #ccc !default;
|
||||
$navbar-default-link-disabled-bg: transparent !default;
|
||||
|
||||
// Navbar brand label
|
||||
$navbar-default-brand-color: $navbar-default-link-color !default;
|
||||
$navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%) !default;
|
||||
$navbar-default-brand-hover-bg: transparent !default;
|
||||
$navbar-default-brand-color: $navbar-default-link-color !default;
|
||||
$navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%) !default;
|
||||
$navbar-default-brand-hover-bg: transparent !default;
|
||||
|
||||
// Navbar toggle
|
||||
$navbar-default-toggle-hover-bg: #ddd !default;
|
||||
$navbar-default-toggle-icon-bar-bg: #888 !default;
|
||||
$navbar-default-toggle-border-color: #ddd !default;
|
||||
|
||||
$navbar-default-toggle-hover-bg: #ddd !default;
|
||||
$navbar-default-toggle-icon-bar-bg: #888 !default;
|
||||
$navbar-default-toggle-border-color: #ddd !default;
|
||||
|
||||
// Inverted navbar
|
||||
// Reset inverted navbar basics
|
||||
$navbar-inverse-color: $gray-light !default;
|
||||
$navbar-inverse-bg: #222 !default;
|
||||
$navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
|
||||
$navbar-inverse-color: $gray-light !default;
|
||||
$navbar-inverse-bg: #222 !default;
|
||||
$navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
|
||||
|
||||
// Inverted navbar links
|
||||
$navbar-inverse-link-color: $gray-light !default;
|
||||
$navbar-inverse-link-hover-color: #fff !default;
|
||||
$navbar-inverse-link-hover-bg: transparent !default;
|
||||
$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
|
||||
$navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%) !default;
|
||||
$navbar-inverse-link-disabled-color: #444 !default;
|
||||
$navbar-inverse-link-disabled-bg: transparent !default;
|
||||
$navbar-inverse-link-color: $gray-light !default;
|
||||
$navbar-inverse-link-hover-color: #fff !default;
|
||||
$navbar-inverse-link-hover-bg: transparent !default;
|
||||
$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
|
||||
$navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%) !default;
|
||||
$navbar-inverse-link-disabled-color: #444 !default;
|
||||
$navbar-inverse-link-disabled-bg: transparent !default;
|
||||
|
||||
// Inverted navbar brand label
|
||||
$navbar-inverse-brand-color: $navbar-inverse-link-color !default;
|
||||
$navbar-inverse-brand-hover-color: #fff !default;
|
||||
$navbar-inverse-brand-hover-bg: transparent !default;
|
||||
$navbar-inverse-brand-color: $navbar-inverse-link-color !default;
|
||||
$navbar-inverse-brand-hover-color: #fff !default;
|
||||
$navbar-inverse-brand-hover-bg: transparent !default;
|
||||
|
||||
// Inverted navbar toggle
|
||||
$navbar-inverse-toggle-hover-bg: #333 !default;
|
||||
$navbar-inverse-toggle-icon-bar-bg: #fff !default;
|
||||
$navbar-inverse-toggle-border-color: #333 !default;
|
||||
|
||||
$navbar-inverse-toggle-hover-bg: #333 !default;
|
||||
$navbar-inverse-toggle-icon-bar-bg: #fff !default;
|
||||
$navbar-inverse-toggle-border-color: #333 !default;
|
||||
|
||||
//== Navs
|
||||
//
|
||||
//##
|
||||
|
||||
//=== Shared nav styles
|
||||
$nav-link-padding: 10px 15px !default;
|
||||
$nav-link-hover-bg: $gray-lighter !default;
|
||||
$nav-link-padding: 10px 15px !default;
|
||||
$nav-link-hover-bg: $gray-lighter !default;
|
||||
|
||||
$nav-disabled-link-color: $gray-light !default;
|
||||
$nav-disabled-link-hover-color: $gray-light !default;
|
||||
$nav-disabled-link-color: $gray-light !default;
|
||||
$nav-disabled-link-hover-color: $gray-light !default;
|
||||
|
||||
$nav-open-link-hover-color: #fff !default;
|
||||
$nav-open-link-hover-color: #fff !default;
|
||||
|
||||
//== Tabs
|
||||
$nav-tabs-border-color: #ddd !default;
|
||||
$nav-tabs-border-color: #ddd !default;
|
||||
|
||||
$nav-tabs-link-hover-border-color: $gray-lighter !default;
|
||||
$nav-tabs-link-hover-border-color: $gray-lighter !default;
|
||||
|
||||
$nav-tabs-active-link-hover-bg: $body-bg !default;
|
||||
$nav-tabs-active-link-hover-color: $gray !default;
|
||||
$nav-tabs-active-link-hover-border-color: #ddd !default;
|
||||
$nav-tabs-active-link-hover-bg: $body-bg !default;
|
||||
$nav-tabs-active-link-hover-color: $gray !default;
|
||||
$nav-tabs-active-link-hover-border-color: #ddd !default;
|
||||
|
||||
$nav-tabs-justified-link-border-color: #ddd !default;
|
||||
$nav-tabs-justified-active-link-border-color: $body-bg !default;
|
||||
$nav-tabs-justified-link-border-color: #ddd !default;
|
||||
$nav-tabs-justified-active-link-border-color: $body-bg !default;
|
||||
|
||||
//== Pills
|
||||
$nav-pills-border-radius: $border-radius-base !default;
|
||||
$nav-pills-active-link-hover-bg: $component-active-bg !default;
|
||||
$nav-pills-active-link-hover-color: $component-active-color !default;
|
||||
|
||||
$nav-pills-border-radius: $border-radius-base !default;
|
||||
$nav-pills-active-link-hover-bg: $component-active-bg !default;
|
||||
$nav-pills-active-link-hover-color: $component-active-color !default;
|
||||
|
||||
//== Pagination
|
||||
//
|
||||
//##
|
||||
|
||||
$pagination-color: $link-color !default;
|
||||
$pagination-bg: #fff !default;
|
||||
$pagination-border: #ddd !default;
|
||||
$pagination-color: $link-color !default;
|
||||
$pagination-bg: #fff !default;
|
||||
$pagination-border: #ddd !default;
|
||||
|
||||
$pagination-hover-color: $link-hover-color !default;
|
||||
$pagination-hover-bg: $gray-lighter !default;
|
||||
$pagination-hover-border: #ddd !default;
|
||||
$pagination-hover-color: $link-hover-color !default;
|
||||
$pagination-hover-bg: $gray-lighter !default;
|
||||
$pagination-hover-border: #ddd !default;
|
||||
|
||||
$pagination-active-color: #fff !default;
|
||||
$pagination-active-bg: $brand-primary !default;
|
||||
$pagination-active-border: $brand-primary !default;
|
||||
|
||||
$pagination-disabled-color: $gray-light !default;
|
||||
$pagination-disabled-bg: #fff !default;
|
||||
$pagination-disabled-border: #ddd !default;
|
||||
$pagination-active-color: #fff !default;
|
||||
$pagination-active-bg: $brand-primary !default;
|
||||
$pagination-active-border: $brand-primary !default;
|
||||
|
||||
$pagination-disabled-color: $gray-light !default;
|
||||
$pagination-disabled-bg: #fff !default;
|
||||
$pagination-disabled-border: #ddd !default;
|
||||
|
||||
//== Pager
|
||||
//
|
||||
//##
|
||||
|
||||
$pager-bg: $pagination-bg !default;
|
||||
$pager-border: $pagination-border !default;
|
||||
$pager-border-radius: 15px !default;
|
||||
$pager-bg: $pagination-bg !default;
|
||||
$pager-border: $pagination-border !default;
|
||||
$pager-border-radius: 15px !default;
|
||||
|
||||
$pager-hover-bg: $pagination-hover-bg !default;
|
||||
$pager-hover-bg: $pagination-hover-bg !default;
|
||||
|
||||
$pager-active-bg: $pagination-active-bg !default;
|
||||
$pager-active-color: $pagination-active-color !default;
|
||||
|
||||
$pager-disabled-color: $pagination-disabled-color !default;
|
||||
$pager-active-bg: $pagination-active-bg !default;
|
||||
$pager-active-color: $pagination-active-color !default;
|
||||
|
||||
$pager-disabled-color: $pagination-disabled-color !default;
|
||||
|
||||
//== Jumbotron
|
||||
//
|
||||
//##
|
||||
|
||||
$jumbotron-padding: 30px !default;
|
||||
$jumbotron-color: inherit !default;
|
||||
$jumbotron-bg: $gray-lighter !default;
|
||||
$jumbotron-heading-color: inherit !default;
|
||||
$jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
|
||||
$jumbotron-heading-font-size: ceil(($font-size-base * 4.5));
|
||||
|
||||
$jumbotron-padding: 30px !default;
|
||||
$jumbotron-color: inherit !default;
|
||||
$jumbotron-bg: $gray-lighter !default;
|
||||
$jumbotron-heading-color: inherit !default;
|
||||
$jumbotron-font-size: ceil($font-size-base * 1.5) !default;
|
||||
$jumbotron-heading-font-size: ceil($font-size-base * 4.5);
|
||||
|
||||
//== Form states and alerts
|
||||
//
|
||||
//## Define colors for form feedback states and, by default, alerts.
|
||||
|
||||
$state-success-text: #3c763d !default;
|
||||
$state-success-bg: #dff0d8 !default;
|
||||
$state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default;
|
||||
$state-success-text: #3c763d !default;
|
||||
$state-success-bg: #dff0d8 !default;
|
||||
$state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default;
|
||||
|
||||
$state-info-text: #31708f !default;
|
||||
$state-info-bg: #d9edf7 !default;
|
||||
$state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default;
|
||||
$state-info-text: #31708f !default;
|
||||
$state-info-bg: #d9edf7 !default;
|
||||
$state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default;
|
||||
|
||||
$state-warning-text: #8a6d3b !default;
|
||||
$state-warning-bg: #fcf8e3 !default;
|
||||
$state-warning-border: darken(adjust-hue($state-warning-bg, -10), 5%) !default;
|
||||
|
||||
$state-danger-text: #a94442 !default;
|
||||
$state-danger-bg: #f2dede !default;
|
||||
$state-danger-border: darken(adjust-hue($state-danger-bg, -10), 5%) !default;
|
||||
$state-warning-text: #8a6d3b !default;
|
||||
$state-warning-bg: #fcf8e3 !default;
|
||||
$state-warning-border: darken(adjust-hue($state-warning-bg, -10), 5%) !default;
|
||||
|
||||
$state-danger-text: #a94442 !default;
|
||||
$state-danger-bg: #f2dede !default;
|
||||
$state-danger-border: darken(adjust-hue($state-danger-bg, -10), 5%) !default;
|
||||
|
||||
//== Tooltips
|
||||
//
|
||||
//##
|
||||
|
||||
//** Tooltip max width
|
||||
$tooltip-max-width: 200px !default;
|
||||
$tooltip-max-width: 200px !default;
|
||||
|
||||
//** Tooltip text color
|
||||
$tooltip-color: white !default;
|
||||
$tooltip-color: white !default;
|
||||
|
||||
//** Tooltip background color
|
||||
$tooltip-bg: #424242 !default;
|
||||
$tooltip-opacity: .9 !default;
|
||||
$tooltip-bg: #424242 !default;
|
||||
$tooltip-opacity: 0.9 !default;
|
||||
|
||||
//** Tooltip arrow width
|
||||
$tooltip-arrow-width: 5px !default;
|
||||
$tooltip-arrow-width: 5px !default;
|
||||
|
||||
//** Tooltip arrow color
|
||||
$tooltip-arrow-color: $tooltip-bg !default;
|
||||
$tooltip-arrow-color: $tooltip-bg !default;
|
||||
|
||||
//add sleede
|
||||
$tooltip-fallback-color: rgba(0,0,0,.9) !default;
|
||||
$tooltip-fallback-color: rgba(0, 0, 0, 0.9) !default;
|
||||
|
||||
//== Arrow
|
||||
// add by sleede
|
||||
//##
|
||||
$arrow-width: 7px;
|
||||
$arrow-color: #fff;
|
||||
$arrow-outer-width: ($arrow-width + 1);
|
||||
$arrow-outer-color: rgba(0,0,0,.1);
|
||||
$arrow-outer-fallback-color: #eee;
|
||||
|
||||
$arrow-width: 7px;
|
||||
$arrow-color: #fff;
|
||||
$arrow-outer-width: $arrow-width + 1;
|
||||
$arrow-outer-color: rgba(0, 0, 0, 0.1);
|
||||
$arrow-outer-fallback-color: #eee;
|
||||
|
||||
//== Popovers
|
||||
//
|
||||
//##
|
||||
|
||||
//** Popover body background color
|
||||
$popover-bg: #fff !default;
|
||||
$popover-bg: #fff !default;
|
||||
|
||||
//** Popover maximum width
|
||||
$popover-max-width: 276px !default;
|
||||
$popover-max-width: 276px !default;
|
||||
|
||||
//** Popover border color
|
||||
$popover-border-color: rgba(0,0,0,.2) !default;
|
||||
$popover-border-color: rgba(0, 0, 0, 0.2) !default;
|
||||
|
||||
//** Popover fallback border color
|
||||
$popover-fallback-border-color: #ccc !default;
|
||||
$popover-fallback-border-color: #ccc !default;
|
||||
|
||||
//** Popover title background color
|
||||
$popover-title-bg: darken($popover-bg, 3%) !default;
|
||||
$popover-title-bg: darken($popover-bg, 3%) !default;
|
||||
|
||||
//** Popover arrow width
|
||||
$popover-arrow-width: 10px !default;
|
||||
$popover-arrow-width: 10px !default;
|
||||
|
||||
//** Popover arrow color
|
||||
$popover-arrow-color: #fff !default;
|
||||
$popover-arrow-color: #fff !default;
|
||||
|
||||
//** Popover outer arrow width
|
||||
$popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
|
||||
//** Popover outer arrow color
|
||||
$popover-arrow-outer-color: fade_in($popover-border-color, 0.05) !default;
|
||||
//** Popover outer arrow fallback color
|
||||
$popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
|
||||
$popover-arrow-outer-width: $popover-arrow-width + 1 !default;
|
||||
|
||||
//** Popover outer arrow color
|
||||
$popover-arrow-outer-color: fade_in($popover-border-color, 0.05) !default;
|
||||
|
||||
//** Popover outer arrow fallback color
|
||||
$popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
|
||||
|
||||
//== Labels
|
||||
//
|
||||
//##
|
||||
|
||||
//** Default label background color
|
||||
$label-default-bg: $gray-light !default;
|
||||
$label-default-bg: $gray-light !default;
|
||||
|
||||
//** Primary label background color
|
||||
$label-primary-bg: $brand-primary !default;
|
||||
$label-primary-bg: $brand-primary !default;
|
||||
|
||||
//** Success label background color
|
||||
$label-success-bg: $brand-success !default;
|
||||
$label-success-bg: $brand-success !default;
|
||||
|
||||
//** Info label background color
|
||||
$label-info-bg: $brand-info !default;
|
||||
$label-info-bg: $brand-info !default;
|
||||
|
||||
//** Warning label background color
|
||||
$label-warning-bg: $brand-warning !default;
|
||||
$label-warning-bg: $brand-warning !default;
|
||||
|
||||
//** Danger label background color
|
||||
$label-danger-bg: $brand-danger !default;
|
||||
$label-danger-bg: $brand-danger !default;
|
||||
|
||||
//** Default label text color
|
||||
$label-color: #424242 !default;
|
||||
//** Default text color of a linked label
|
||||
$label-link-hover-color: $red !default;
|
||||
$label-color: #424242 !default;
|
||||
|
||||
//** Default text color of a linked label
|
||||
$label-link-hover-color: $red !default;
|
||||
|
||||
//== Modals
|
||||
//
|
||||
//##
|
||||
|
||||
//** Padding applied to the modal body
|
||||
$modal-inner-padding: 15px !default;
|
||||
$modal-inner-padding: 15px !default;
|
||||
|
||||
//** Padding applied to the modal title
|
||||
$modal-title-padding: 8px !default;
|
||||
$modal-title-padding: 8px !default;
|
||||
|
||||
//** Modal title line-height
|
||||
$modal-title-line-height: $line-height-base !default;
|
||||
$modal-title-line-height: $line-height-base !default;
|
||||
|
||||
//** Background color of modal content area
|
||||
$modal-content-bg: #fff !default;
|
||||
$modal-content-bg: #fff !default;
|
||||
|
||||
//** Modal content border color
|
||||
$modal-content-border-color: rgba(0,0,0,.2) !default;
|
||||
$modal-content-border-color: rgba(0, 0, 0, 0.2) !default;
|
||||
|
||||
//** Modal content border color **for IE8**
|
||||
$modal-content-fallback-border-color: #999 !default;
|
||||
$modal-content-fallback-border-color: #999 !default;
|
||||
|
||||
//** Modal backdrop background color
|
||||
$modal-backdrop-bg: #000 !default;
|
||||
$modal-backdrop-bg: #000 !default;
|
||||
|
||||
//** Modal backdrop opacity
|
||||
$modal-backdrop-opacity: .9 !default;
|
||||
$modal-backdrop-opacity: 0.9 !default;
|
||||
|
||||
//** Modal header border color
|
||||
$modal-header-border-color: #e5e5e5 !default;
|
||||
$modal-header-border-color: #e5e5e5 !default;
|
||||
|
||||
//** Modal footer border color
|
||||
$modal-footer-border-color: $modal-header-border-color !default;
|
||||
|
||||
$modal-lg: 600px !default;
|
||||
$modal-md: 440px !default;
|
||||
$modal-sm: 340px !default;
|
||||
$modal-footer-border-color: $modal-header-border-color !default;
|
||||
|
||||
$modal-lg: 600px !default;
|
||||
$modal-md: 440px !default;
|
||||
$modal-sm: 340px !default;
|
||||
|
||||
//== Alerts
|
||||
//
|
||||
//## Define alert colors, border radius, and padding.
|
||||
|
||||
$alert-padding: 15px !default;
|
||||
$alert-border-radius: $border-radius-base !default;
|
||||
$alert-link-font-weight: bold !default;
|
||||
$alert-padding: 15px !default;
|
||||
$alert-border-radius: $border-radius-base !default;
|
||||
$alert-link-font-weight: bold !default;
|
||||
|
||||
$alert-success-bg: $state-success-bg !default;
|
||||
$alert-success-text: $state-success-text !default;
|
||||
$alert-success-border: $state-success-border !default;
|
||||
$alert-success-bg: $state-success-bg !default;
|
||||
$alert-success-text: $state-success-text !default;
|
||||
$alert-success-border: $state-success-border !default;
|
||||
|
||||
$alert-info-bg: $state-info-bg !default;
|
||||
$alert-info-text: $state-info-text !default;
|
||||
$alert-info-border: $state-info-border !default;
|
||||
$alert-info-bg: $state-info-bg !default;
|
||||
$alert-info-text: $state-info-text !default;
|
||||
$alert-info-border: $state-info-border !default;
|
||||
|
||||
$alert-warning-bg: $state-warning-bg !default;
|
||||
$alert-warning-text: $state-warning-text !default;
|
||||
$alert-warning-border: $state-warning-border !default;
|
||||
|
||||
$alert-danger-bg: $state-danger-bg !default;
|
||||
$alert-danger-text: $state-danger-text !default;
|
||||
$alert-danger-border: $state-danger-border !default;
|
||||
$alert-warning-bg: $state-warning-bg !default;
|
||||
$alert-warning-text: $state-warning-text !default;
|
||||
$alert-warning-border: $state-warning-border !default;
|
||||
|
||||
$alert-danger-bg: $state-danger-bg !default;
|
||||
$alert-danger-text: $state-danger-text !default;
|
||||
$alert-danger-border: $state-danger-border !default;
|
||||
|
||||
//== Progress bars
|
||||
//
|
||||
//##
|
||||
|
||||
//** Background color of the whole progress component
|
||||
$progress-bg: $bg-gray !default;
|
||||
$progress-bg: $bg-gray !default;
|
||||
|
||||
//** Progress bar text color
|
||||
$progress-bar-color: #fff !default;
|
||||
$progress-bar-color: #fff !default;
|
||||
|
||||
//** Variable for setting rounded corners on progress bar.
|
||||
$progress-border-radius: $border-radius-base;
|
||||
$progress-border-radius: $border-radius-base;
|
||||
|
||||
//** Default progress bar color
|
||||
$progress-bar-bg: $brand-primary !default;
|
||||
//** Success progress bar color
|
||||
$progress-bar-success-bg: $brand-success !default;
|
||||
//** Warning progress bar color
|
||||
$progress-bar-warning-bg: $brand-warning !default;
|
||||
//** Danger progress bar color
|
||||
$progress-bar-danger-bg: $brand-danger !default;
|
||||
//** Info progress bar color
|
||||
$progress-bar-info-bg: $brand-info !default;
|
||||
$progress-bar-bg: $brand-primary !default;
|
||||
|
||||
//** Success progress bar color
|
||||
$progress-bar-success-bg: $brand-success !default;
|
||||
|
||||
//** Warning progress bar color
|
||||
$progress-bar-warning-bg: $brand-warning !default;
|
||||
|
||||
//** Danger progress bar color
|
||||
$progress-bar-danger-bg: $brand-danger !default;
|
||||
|
||||
//** Info progress bar color
|
||||
$progress-bar-info-bg: $brand-info !default;
|
||||
|
||||
//== List group
|
||||
//
|
||||
//##
|
||||
|
||||
//** Background color on `.list-group-item`
|
||||
$list-group-bg: #fff !default;
|
||||
$list-group-bg: #fff !default;
|
||||
|
||||
//** `.list-group-item` border color
|
||||
$list-group-border: #ddd !default;
|
||||
$list-group-border: #ddd !default;
|
||||
|
||||
//** List group border radius
|
||||
$list-group-border-radius: $border-radius-base !default;
|
||||
$list-group-border-radius: $border-radius-base !default;
|
||||
|
||||
//** Background color of single list items on hover
|
||||
$list-group-hover-bg: $bg-gray !default;
|
||||
$list-group-hover-bg: $bg-gray !default;
|
||||
|
||||
//** Text color of active list items
|
||||
$list-group-active-color: $brand-info !default;
|
||||
$list-group-active-color: $brand-info !default;
|
||||
|
||||
//** Background color of active list items
|
||||
$list-group-active-bg: $component-active-bg !default;
|
||||
$list-group-active-bg: $component-active-bg !default;
|
||||
|
||||
//** Border color of active list elements
|
||||
$list-group-active-border: $list-group-active-bg !default;
|
||||
$list-group-active-border: $list-group-active-bg !default;
|
||||
|
||||
//** Text color for content within active list items
|
||||
$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
|
||||
$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
|
||||
|
||||
//** Text color of disabled list items
|
||||
$list-group-disabled-color: $gray-light !default;
|
||||
$list-group-disabled-color: $gray-light !default;
|
||||
|
||||
//** Background color of disabled list items
|
||||
$list-group-disabled-bg: $gray-lighter !default;
|
||||
$list-group-disabled-bg: $gray-lighter !default;
|
||||
|
||||
//** Text color for content within disabled list items
|
||||
$list-group-disabled-text-color: $list-group-disabled-color !default;
|
||||
|
||||
$list-group-link-color: #555 !default;
|
||||
$list-group-link-hover-color: $list-group-link-color !default;
|
||||
$list-group-link-color: #555 !default;
|
||||
$list-group-link-hover-color: $list-group-link-color !default;
|
||||
$list-group-link-heading-color: #333 !default;
|
||||
|
||||
|
||||
//== Panels
|
||||
//
|
||||
//##
|
||||
|
||||
$panel-bg: #fff !default;
|
||||
$panel-body-padding: 15px !default;
|
||||
$panel-heading-padding: 18px 15px !default;
|
||||
$panel-footer-padding: $panel-heading-padding !default;
|
||||
$panel-border-radius: $border-radius-large !default;
|
||||
$panel-bg: #fff !default;
|
||||
$panel-body-padding: 15px !default;
|
||||
$panel-heading-padding: 18px 15px !default;
|
||||
$panel-footer-padding: $panel-heading-padding !default;
|
||||
$panel-border-radius: $border-radius-large !default;
|
||||
|
||||
// add sleede
|
||||
$panel-border: $border-color !default;
|
||||
$panel-heading-bg: #fff !default;
|
||||
$panel-footer-bg: #fff !default;
|
||||
$panel-border: $border-color !default;
|
||||
$panel-heading-bg: #fff !default;
|
||||
$panel-footer-bg: #fff !default;
|
||||
|
||||
//** Border color for elements within panels
|
||||
$panel-inner-border: #ddd !default;
|
||||
$panel-footer-bg: $bg-gray !default;
|
||||
$panel-inner-border: #ddd !default;
|
||||
$panel-footer-bg: $bg-gray !default;
|
||||
|
||||
$panel-default-text: $gray-dark !default;
|
||||
$panel-default-border: #ddd !default;
|
||||
$panel-default-heading-bg: $bg-gray !default;
|
||||
$panel-default-text: $gray-dark !default;
|
||||
$panel-default-border: #ddd !default;
|
||||
$panel-default-heading-bg: $bg-gray !default;
|
||||
|
||||
$panel-primary-text: #fff !default;
|
||||
$panel-primary-border: #cbcbcb !default;
|
||||
$panel-primary-heading-bg: #fff !default;
|
||||
$panel-primary-text: #fff !default;
|
||||
$panel-primary-border: #cbcbcb !default;
|
||||
$panel-primary-heading-bg: #fff !default;
|
||||
|
||||
$panel-success-text: $state-success-text !default;
|
||||
$panel-success-border: $state-success-border !default;
|
||||
$panel-success-heading-bg: $state-success-bg !default;
|
||||
$panel-success-text: $state-success-text !default;
|
||||
$panel-success-border: $state-success-border !default;
|
||||
$panel-success-heading-bg: $state-success-bg !default;
|
||||
|
||||
$panel-info-text: $state-info-text !default;
|
||||
$panel-info-border: $state-info-border !default;
|
||||
$panel-info-heading-bg: $state-info-bg !default;
|
||||
$panel-info-text: $state-info-text !default;
|
||||
$panel-info-border: $state-info-border !default;
|
||||
$panel-info-heading-bg: $state-info-bg !default;
|
||||
|
||||
$panel-warning-text: $state-warning-text !default;
|
||||
$panel-warning-border: $state-warning-border !default;
|
||||
$panel-warning-heading-bg: $state-warning-bg !default;
|
||||
|
||||
$panel-danger-text: $state-danger-text !default;
|
||||
$panel-danger-border: $state-danger-border !default;
|
||||
$panel-danger-heading-bg: $state-danger-bg !default;
|
||||
$panel-warning-text: $state-warning-text !default;
|
||||
$panel-warning-border: $state-warning-border !default;
|
||||
$panel-warning-heading-bg: $state-warning-bg !default;
|
||||
|
||||
$panel-danger-text: $state-danger-text !default;
|
||||
$panel-danger-border: $state-danger-border !default;
|
||||
$panel-danger-heading-bg: $state-danger-bg !default;
|
||||
|
||||
//== Thumbnails
|
||||
//
|
||||
//##
|
||||
|
||||
//** Padding around the thumbnail image
|
||||
$thumbnail-padding: 4px !default;
|
||||
$thumbnail-padding: 4px !default;
|
||||
|
||||
//** Thumbnail background color
|
||||
$thumbnail-bg: $body-bg !default;
|
||||
$thumbnail-bg: $body-bg !default;
|
||||
|
||||
//** Thumbnail border color
|
||||
$thumbnail-border: #ddd !default;
|
||||
$thumbnail-border: #ddd !default;
|
||||
|
||||
//** Thumbnail border radius
|
||||
$thumbnail-border-radius: $border-radius-base !default;
|
||||
$thumbnail-border-radius: $border-radius-base !default;
|
||||
|
||||
//** Custom text color for thumbnail captions
|
||||
$thumbnail-caption-color: $text-color !default;
|
||||
//** Padding around the thumbnail caption
|
||||
$thumbnail-caption-padding: 9px !default;
|
||||
$thumbnail-caption-color: $text-color !default;
|
||||
|
||||
//** Padding around the thumbnail caption
|
||||
$thumbnail-caption-padding: 9px !default;
|
||||
|
||||
//== Wells
|
||||
//
|
||||
//##
|
||||
|
||||
$well-bg: #fff !default;
|
||||
$well-border: darken($well-bg, 7%) !default;
|
||||
|
||||
$well-bg: #fff !default;
|
||||
$well-border: darken($well-bg, 7%) !default;
|
||||
|
||||
//== Badges
|
||||
//
|
||||
//##
|
||||
|
||||
$badge-color: #fff !default;
|
||||
$badge-color: #fff !default;
|
||||
|
||||
//** Linked badge text color on hover
|
||||
$badge-link-hover-color: #fff !default;
|
||||
$badge-bg: $gray-light !default;
|
||||
$badge-link-hover-color: #fff !default;
|
||||
$badge-bg: $gray-light !default;
|
||||
|
||||
//** Badge text color in active nav link
|
||||
$badge-active-color: $link-color !default;
|
||||
$badge-active-color: $link-color !default;
|
||||
|
||||
//** Badge background color in active nav link
|
||||
$badge-active-bg: #fff !default;
|
||||
|
||||
$badge-font-weight: bold !default;
|
||||
$badge-line-height: 1 !default;
|
||||
$badge-border-radius: 10px !default;
|
||||
$badge-active-bg: #fff !default;
|
||||
|
||||
$badge-font-weight: bold !default;
|
||||
$badge-line-height: 1 !default;
|
||||
$badge-border-radius: 10px !default;
|
||||
|
||||
//== Breadcrumbs
|
||||
//
|
||||
//##
|
||||
|
||||
$breadcrumb-padding-vertical: 8px !default;
|
||||
$breadcrumb-padding-vertical: 8px !default;
|
||||
$breadcrumb-padding-horizontal: 15px !default;
|
||||
//** Breadcrumb background color
|
||||
$breadcrumb-bg: $bg-gray !default;
|
||||
//** Breadcrumb text color
|
||||
$breadcrumb-color: #ccc !default;
|
||||
//** Text color of current page in the breadcrumb
|
||||
$breadcrumb-active-color: $gray-light !default;
|
||||
//** Textual separator for between breadcrumb elements
|
||||
$breadcrumb-separator: "/" !default;
|
||||
|
||||
//** Breadcrumb background color
|
||||
$breadcrumb-bg: $bg-gray !default;
|
||||
|
||||
//** Breadcrumb text color
|
||||
$breadcrumb-color: #ccc !default;
|
||||
|
||||
//** Text color of current page in the breadcrumb
|
||||
$breadcrumb-active-color: $gray-light !default;
|
||||
|
||||
//** Textual separator for between breadcrumb elements
|
||||
$breadcrumb-separator: "/" !default;
|
||||
|
||||
//== Carousel
|
||||
//
|
||||
//##
|
||||
|
||||
$carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
|
||||
$carousel-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) !default;
|
||||
|
||||
$carousel-control-color: #fff !default;
|
||||
$carousel-control-width: 15% !default;
|
||||
$carousel-control-opacity: .5 !default;
|
||||
$carousel-control-font-size: 20px !default;
|
||||
$carousel-control-color: #fff !default;
|
||||
$carousel-control-width: 15% !default;
|
||||
$carousel-control-opacity: 0.5 !default;
|
||||
$carousel-control-font-size: 20px !default;
|
||||
|
||||
$carousel-indicator-active-bg: #fff !default;
|
||||
$carousel-indicator-border-color: #fff !default;
|
||||
|
||||
$carousel-caption-color: #fff !default;
|
||||
$carousel-indicator-active-bg: #fff !default;
|
||||
$carousel-indicator-border-color: #fff !default;
|
||||
|
||||
$carousel-caption-color: #fff !default;
|
||||
|
||||
//== Close
|
||||
//
|
||||
//##
|
||||
|
||||
$close-font-weight: bold !default;
|
||||
$close-color: #000 !default;
|
||||
$close-text-shadow: 0 1px 0 #fff !default;
|
||||
|
||||
$close-font-weight: bold !default;
|
||||
$close-color: #000 !default;
|
||||
$close-text-shadow: 0 1px 0 #fff !default;
|
||||
|
||||
//== Code
|
||||
//
|
||||
//##
|
||||
|
||||
$code-color: #c7254e !default;
|
||||
$code-bg: #f9f2f4 !default;
|
||||
$code-color: #c7254e !default;
|
||||
$code-bg: #f9f2f4 !default;
|
||||
|
||||
$kbd-color: #fff !default;
|
||||
$kbd-bg: #333 !default;
|
||||
|
||||
$pre-bg: transparent !default;
|
||||
$pre-color: $gray-dark !default;
|
||||
$pre-border-color: transparent !default;
|
||||
$pre-scrollable-max-height: 340px !default;
|
||||
$kbd-color: #fff !default;
|
||||
$kbd-bg: #333 !default;
|
||||
|
||||
$pre-bg: transparent !default;
|
||||
$pre-color: $gray-dark !default;
|
||||
$pre-border-color: transparent !default;
|
||||
$pre-scrollable-max-height: 340px !default;
|
||||
|
||||
//== Type
|
||||
//
|
||||
//##
|
||||
//** Horizontal offset for forms and lists.
|
||||
$component-offset-horizontal: 180px !default;
|
||||
//** Text muted color
|
||||
$text-muted: $gray-light !default;
|
||||
//** Abbreviations and acronyms border color
|
||||
$abbr-border-color: $gray-light !default;
|
||||
//** Headings small color
|
||||
$headings-small-color: $gray-light !default;
|
||||
//** Blockquote small color
|
||||
$blockquote-small-color: $gray-light !default;
|
||||
//** Blockquote font size
|
||||
$blockquote-font-size: ($font-size-base * 1.25) !default;
|
||||
//** Blockquote border color
|
||||
$blockquote-border-color: $gray-lighter !default;
|
||||
//** Page header border color
|
||||
$page-header-border-color: $gray-lighter !default;
|
||||
//** Width of horizontal description list titles
|
||||
$dl-horizontal-offset: $component-offset-horizontal !default;
|
||||
//** Point at which .dl-horizontal becomes horizontal
|
||||
$dl-horizontal-breakpoint: $grid-float-breakpoint;
|
||||
//** Horizontal line color.
|
||||
$hr-border: $gray-lighter !default;
|
||||
|
||||
//** Text muted color
|
||||
$text-muted: $gray-light !default;
|
||||
|
||||
//** Abbreviations and acronyms border color
|
||||
$abbr-border-color: $gray-light !default;
|
||||
|
||||
//** Headings small color
|
||||
$headings-small-color: $gray-light !default;
|
||||
|
||||
//** Blockquote small color
|
||||
$blockquote-small-color: $gray-light !default;
|
||||
|
||||
//** Blockquote font size
|
||||
$blockquote-font-size: $font-size-base * 1.25 !default;
|
||||
|
||||
//** Blockquote border color
|
||||
$blockquote-border-color: $gray-lighter !default;
|
||||
|
||||
//** Page header border color
|
||||
$page-header-border-color: $gray-lighter !default;
|
||||
|
||||
//** Width of horizontal description list titles
|
||||
$dl-horizontal-offset: $component-offset-horizontal !default;
|
||||
|
||||
//** Point at which .dl-horizontal becomes horizontal
|
||||
$dl-horizontal-breakpoint: $grid-float-breakpoint;
|
||||
|
||||
//** Horizontal line color.
|
||||
$hr-border: $gray-lighter !default;
|
||||
|
||||
// Core variables and mixins
|
||||
// @import "bootstrap/variables"; //overrides
|
||||
|
@ -1,5 +1,4 @@
|
||||
li.abuse {
|
||||
|
||||
list-style: none;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 2px;
|
||||
|
@ -8,19 +8,22 @@
|
||||
padding: 3rem;
|
||||
flex-direction: column;
|
||||
z-index: 100;
|
||||
-webkit-box-shadow: 0 4px 10px 2px rgba(224,224,224,0.43);
|
||||
-moz-box-shadow: 0 4px 10px 2px rgba(224,224,224,0.43);
|
||||
box-shadow: 0 4px 10px 2px rgba(224,224,224,0.43);
|
||||
-webkit-box-shadow: 0 4px 10px 2px rgba(224, 224, 224, 0.43);
|
||||
-moz-box-shadow: 0 4px 10px 2px rgba(224, 224, 224, 0.43);
|
||||
box-shadow: 0 4px 10px 2px rgba(224, 224, 224, 0.43);
|
||||
|
||||
.cookies-actions {
|
||||
display: flex;
|
||||
|
||||
button {
|
||||
flex-basis: 50%;
|
||||
}
|
||||
|
||||
button.decline {
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
button.accept {
|
||||
background-color: red;
|
||||
border: 0;
|
||||
|
@ -1,5 +1,5 @@
|
||||
.calendar-form {
|
||||
margin : 2em;
|
||||
margin: 2em;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 3px;
|
||||
padding: 1em;
|
||||
@ -21,4 +21,4 @@
|
||||
.external-calendar-legend {
|
||||
border-left: 3px solid;
|
||||
border-radius: 3px;
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
// admin invoices
|
||||
|
||||
.chained {
|
||||
@ -18,8 +17,7 @@
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: #aeaeae #979797 #7b7b7b;
|
||||
box-shadow: 2px 3px 6px 0 #898989,
|
||||
-2px 3px 6px 0 #898989;
|
||||
box-shadow: 2px 3px 6px 0 #898989, -2px 3px 6px 0 #898989;
|
||||
padding: 2em;
|
||||
|
||||
.invoice-buyer-infos {
|
||||
@ -61,7 +59,7 @@
|
||||
}
|
||||
|
||||
.invoice-data table {
|
||||
width: 100%
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.invoice-data tr, .invoice-data th, .invoice-data td {
|
||||
@ -93,11 +91,10 @@
|
||||
border: 1px dashed #c4c4c4;
|
||||
}
|
||||
|
||||
|
||||
&:after {
|
||||
content:"";
|
||||
display:block;
|
||||
margin-top:30%;
|
||||
content: "";
|
||||
display: block;
|
||||
margin-top: 30%;
|
||||
}
|
||||
|
||||
.vat-line {
|
||||
@ -116,26 +113,27 @@
|
||||
.right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.custom-invoice {
|
||||
.modal-header {
|
||||
@extend .modal-header;
|
||||
|
||||
// padding-left: 4em;
|
||||
text-align: center;
|
||||
background-color: #e6e6e6;
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
|
||||
.elements ul {
|
||||
@extend .list-unstyled;
|
||||
}
|
||||
|
||||
.elements li {
|
||||
@extend .btn;
|
||||
|
||||
@extend .btn-default;
|
||||
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@ -151,18 +149,23 @@
|
||||
.bottom-notes {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
.partial-avoir-table tr {
|
||||
float:left;
|
||||
float: left;
|
||||
|
||||
.input-col { min-width: 2em; }
|
||||
.label-col { min-width: 18em; }
|
||||
.amount-col { min-width: 6em; }
|
||||
.input-col {
|
||||
min-width: 2em;
|
||||
}
|
||||
|
||||
.label-col {
|
||||
min-width: 18em;
|
||||
}
|
||||
|
||||
.amount-col {
|
||||
min-width: 6em;
|
||||
}
|
||||
}
|
||||
|
||||
.partial-avoir-selected-item {
|
||||
@ -171,8 +174,8 @@
|
||||
position: relative;
|
||||
|
||||
&:after {
|
||||
content:"Rembourser";
|
||||
display:inline-block;
|
||||
content: "Rembourser";
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
right: 0.8em;
|
||||
top: 1.8em;
|
||||
@ -193,9 +196,8 @@
|
||||
color: #5a5a5a;
|
||||
}
|
||||
|
||||
|
||||
table.closings-table {
|
||||
@extend table.scrollable-3-cols;
|
||||
@extend .scrollable-3-cols;
|
||||
|
||||
tbody .actions {
|
||||
padding-left: 2em;
|
||||
@ -223,6 +225,7 @@ table.closings-table {
|
||||
i {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: '\f019';
|
||||
font-family: 'fontawesome';
|
||||
@ -234,22 +237,26 @@ table.scrollable-3-cols {
|
||||
width: 100%;
|
||||
border-spacing: 0;
|
||||
|
||||
thead, tbody, tr, th, td { display: block; }
|
||||
thead, tbody, tr, th, td {
|
||||
display: block;
|
||||
}
|
||||
|
||||
thead tr {
|
||||
/* fallback */
|
||||
width: 97%;
|
||||
|
||||
/* minus scroll bar width */
|
||||
width: -webkit-calc(100% - 16px);
|
||||
width: -moz-calc(100% - 16px);
|
||||
width: calc(100% - 16px);
|
||||
width: -moz-calc(100% - 16px);
|
||||
width: calc(100% - 16px);
|
||||
}
|
||||
|
||||
thead tr th {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
tr:after { /* clearing float */
|
||||
tr:after {
|
||||
/* clearing float */
|
||||
content: ' ';
|
||||
display: block;
|
||||
visibility: hidden;
|
||||
@ -263,12 +270,13 @@ table.scrollable-3-cols {
|
||||
}
|
||||
|
||||
tbody td, thead th {
|
||||
width: 32%; /* 32% is less than (100% / 3 cols) = 33.33% */
|
||||
width: 32%;
|
||||
|
||||
/* 32% is less than (100% / 3 cols) = 33.33% */
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.period-info-title {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
@ -5,6 +5,7 @@
|
||||
.note-toolbar .note-btn-group .note-btn .nugget {
|
||||
font-family: "FontAwesome";
|
||||
}
|
||||
|
||||
.note-editing-area .note-editable {
|
||||
#news {
|
||||
width: 100%;
|
||||
@ -20,29 +21,35 @@
|
||||
|
||||
#projects {
|
||||
@extend #news;
|
||||
|
||||
line-height: 523px;
|
||||
}
|
||||
|
||||
#twitter {
|
||||
@extend #news;
|
||||
|
||||
line-height: 162px;
|
||||
}
|
||||
|
||||
#members {
|
||||
@extend #news;
|
||||
|
||||
line-height: 320px;
|
||||
}
|
||||
|
||||
#events {
|
||||
@extend #news;
|
||||
|
||||
line-height: 621px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.home-page-style {
|
||||
.panel {
|
||||
border: 0;
|
||||
|
||||
.panel-heading {
|
||||
background: none;
|
||||
|
||||
|
@ -5,24 +5,29 @@
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
.required-row {
|
||||
div.input-group {
|
||||
width: 95%;
|
||||
display: inline-table;
|
||||
}
|
||||
|
||||
select.form-control {
|
||||
width: 95%;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.exponent {
|
||||
position: relative;
|
||||
top: -14px;
|
||||
right: -4px;
|
||||
}
|
||||
|
||||
.exponent-select {
|
||||
top: -1px;
|
||||
}
|
||||
}
|
||||
|
||||
.info-required {
|
||||
color: #5a5a5a;
|
||||
font-size: 8pt;
|
||||
|
@ -4,7 +4,6 @@
|
||||
z-index: 10000;
|
||||
}
|
||||
|
||||
|
||||
.ui-tour-popup.popover {
|
||||
max-width: 414px;
|
||||
}
|
||||
@ -22,10 +21,22 @@
|
||||
}
|
||||
}
|
||||
|
||||
.shift-right-40 { margin-left: 40px; }
|
||||
.shift-right-40 {
|
||||
margin-left: 40px;
|
||||
}
|
||||
|
||||
.shift-left-40 { margin-left: -40px; }
|
||||
.shift-left-50 { margin-left: -50px; }
|
||||
.shift-left-80 { margin-left: -80px; }
|
||||
.shift-left-40 {
|
||||
margin-left: -40px;
|
||||
}
|
||||
|
||||
.width-350 { width: 350px; }
|
||||
.shift-left-50 {
|
||||
margin-left: -50px;
|
||||
}
|
||||
|
||||
.shift-left-80 {
|
||||
margin-left: -80px;
|
||||
}
|
||||
|
||||
.width-350 {
|
||||
width: 350px;
|
||||
}
|
||||
|
@ -7,9 +7,5 @@ class API::StylesheetsController < API::ApiController
|
||||
|
||||
def show
|
||||
@stylesheet = Stylesheet.find(params[:id])
|
||||
respond_to do |format|
|
||||
format.html # regular ERB template
|
||||
format.css { render text: @stylesheet.contents, content_type: 'text/css' }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -1,10 +0,0 @@
|
||||
class WebhooksController < ApplicationController
|
||||
|
||||
protect_from_forgery :except => :create
|
||||
|
||||
def create
|
||||
# data_json = JSON.parse request.body.read
|
||||
|
||||
render nothing: true
|
||||
end
|
||||
end
|
@ -2,7 +2,7 @@
|
||||
|
||||
# Abuse is a report made by a visitor (not especially a logged user) who has signaled a content that seems abusive to his eyes.
|
||||
# It is currently used with projects.
|
||||
class Abuse < ActiveRecord::Base
|
||||
class Abuse < ApplicationRecord
|
||||
include NotifyWith::NotificationAttachedObject
|
||||
|
||||
belongs_to :signaled, polymorphic: true
|
||||
|
@ -6,7 +6,7 @@ require 'zip'
|
||||
|
||||
# AccountingPeriod is a period of N days (N > 0) which as been closed by an admin
|
||||
# to prevent writing new accounting lines (invoices & refunds) during this period of time.
|
||||
class AccountingPeriod < ActiveRecord::Base
|
||||
class AccountingPeriod < ApplicationRecord
|
||||
before_destroy { false }
|
||||
before_update { false }
|
||||
before_create :compute_totals
|
||||
|
@ -1,3 +1,6 @@
|
||||
class Address < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Address is a database record that can be placed on a map.
|
||||
class Address < ApplicationRecord
|
||||
belongs_to :placeable, polymorphic: true
|
||||
end
|
||||
|
@ -1,4 +1,7 @@
|
||||
class AgeRange < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# AgeRange
|
||||
class AgeRange < ApplicationRecord
|
||||
extend FriendlyId
|
||||
friendly_id :name, use: :slugged
|
||||
|
||||
|
7
app/models/application_record.rb
Normal file
7
app/models/application_record.rb
Normal file
@ -0,0 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# SuperClass for all app models.
|
||||
# This is a single spot to configure app-wide model behavior.
|
||||
class ApplicationRecord < ActiveRecord::Base
|
||||
self.abstract_class = true
|
||||
end
|
@ -3,6 +3,6 @@
|
||||
require 'file_size_validator'
|
||||
|
||||
# Generic class, parent of uploadable items
|
||||
class Asset < ActiveRecord::Base
|
||||
class Asset < ApplicationRecord
|
||||
belongs_to :viewable, polymorphic: true
|
||||
end
|
||||
|
@ -1,6 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class AuthProvider < ActiveRecord::Base
|
||||
# AuthProvider is a configuration record, storing parameters of an external Single-Sign On server
|
||||
class AuthProvider < ApplicationRecord
|
||||
# this is a simple stub used for database creation & configuration
|
||||
class SimpleAuthProvider < Object
|
||||
def providable_type
|
||||
@ -16,11 +17,10 @@ class AuthProvider < ActiveRecord::Base
|
||||
|
||||
belongs_to :providable, polymorphic: true, dependent: :destroy
|
||||
accepts_nested_attributes_for :providable
|
||||
attr_accessible :name, :providable_type, :providable_attributes
|
||||
|
||||
before_create :set_initial_state
|
||||
|
||||
def build_providable(params, _assignment_options)
|
||||
def build_providable(params)
|
||||
raise "Unknown providable_type: #{providable_type}" unless PROVIDABLE_TYPES.include?(providable_type)
|
||||
|
||||
self.providable = providable_type.constantize.new(params)
|
||||
|
@ -3,7 +3,7 @@
|
||||
# Availability stores time slots that are available to reservation for an associated reservable
|
||||
# Eg. a 3D printer will be reservable on thursday from 9 to 11 pm
|
||||
# Availabilities may be subdivided into Slots (of 1h), for some types of reservables (eg. Machine)
|
||||
class Availability < ActiveRecord::Base
|
||||
class Availability < ApplicationRecord
|
||||
# elastic initialisations
|
||||
include Elasticsearch::Model
|
||||
index_name 'fablab'
|
||||
|
@ -1,4 +1,8 @@
|
||||
class AvailabilityTag < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Abuse is a relation table between Availability and Tag.
|
||||
# Associating a Tag to an Availability restrict it for reservation to users with the same Tag.
|
||||
class AvailabilityTag < ApplicationRecord
|
||||
belongs_to :availability
|
||||
belongs_to :tag
|
||||
end
|
||||
|
@ -1,11 +1,15 @@
|
||||
class Category < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Category is a first-level filter, used to categorize Events.
|
||||
# It is mandatory to choose a Category when creating an event.
|
||||
class Category < ApplicationRecord
|
||||
extend FriendlyId
|
||||
friendly_id :name, use: :slugged
|
||||
|
||||
has_many :events, dependent: :destroy
|
||||
|
||||
after_create :create_statistic_subtype
|
||||
after_update :update_statistic_subtype, if: :name_changed?
|
||||
after_update :update_statistic_subtype, if: :saved_change_to_name?
|
||||
after_destroy :remove_statistic_subtype
|
||||
|
||||
|
||||
|
@ -1,4 +1,7 @@
|
||||
class Component < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Component is a material that can be used in Projects.
|
||||
class Component < ApplicationRecord
|
||||
has_and_belongs_to_many :projects, join_table: 'projects_components'
|
||||
validates :name, presence: true, length: { maximum: 50 }
|
||||
end
|
||||
|
@ -1,7 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Coupon is a textual code associated with a discount rate or an amount of discount
|
||||
class Coupon < ActiveRecord::Base
|
||||
class Coupon < ApplicationRecord
|
||||
has_many :invoices
|
||||
|
||||
after_commit :create_stripe_coupon, on: [:create]
|
||||
|
@ -1,4 +1,7 @@
|
||||
class Credit < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Credit is a way to offer free reservations for subscribing members.
|
||||
class Credit < ApplicationRecord
|
||||
belongs_to :creditable, polymorphic: true
|
||||
belongs_to :plan
|
||||
has_many :users_credits, dependent: :destroy
|
||||
|
@ -1,7 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Admin defined assets (like PDF or images uploaded)
|
||||
class CustomAsset < ActiveRecord::Base
|
||||
class CustomAsset < ApplicationRecord
|
||||
has_one :custom_asset_file, as: :viewable, dependent: :destroy
|
||||
accepts_nested_attributes_for :custom_asset_file, allow_destroy: true
|
||||
|
||||
@ -11,7 +11,7 @@ class CustomAsset < ActiveRecord::Base
|
||||
asset&.custom_asset_file&.attachment_url
|
||||
end
|
||||
|
||||
after_update :update_stylesheet if :viewable_changed?
|
||||
after_update :update_stylesheet if :saved_change_to_viewable?
|
||||
|
||||
def update_stylesheet
|
||||
Stylesheet.theme.rebuild! if %w[profile-image-file].include? name
|
||||
|
@ -1,3 +1,6 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# CustomAssetFile is a file stored on the file system, associated with a CustomAsset.
|
||||
class CustomAssetFile < Asset
|
||||
mount_uploader :attachment, CustomAssetsUploader
|
||||
end
|
||||
|
@ -1,4 +1,8 @@
|
||||
class DatabaseProvider < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# DatabaseProvider is a special type of AuthProvider which provides the default app authentication method.
|
||||
# This method uses Devise and the local database.
|
||||
class DatabaseProvider < ApplicationRecord
|
||||
has_one :auth_provider, as: :providable, dependent: :destroy
|
||||
|
||||
def protected_fields
|
||||
|
@ -1,4 +1,7 @@
|
||||
class Event < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Event is an happening organized by the Fablab about a general topic, which does not involve Machines or trainings member's skills.
|
||||
class Event < ApplicationRecord
|
||||
include NotifyWith::NotificationAttachedObject
|
||||
include ApplicationHelper
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Event PDF attachements
|
||||
# EventFile is a PDF attachment for Events
|
||||
class EventFile < Asset
|
||||
mount_uploader :attachment, EventFileUploader
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# EventImage is the main picture for an Events.
|
||||
class EventImage < Asset
|
||||
include ImageValidatorConcern
|
||||
mount_uploader :attachment, EventImageUploader
|
||||
|
@ -1,4 +1,7 @@
|
||||
class EventPriceCategory < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# EventPriceCategory is the relation table between Event and PriceCategory.
|
||||
class EventPriceCategory < ApplicationRecord
|
||||
belongs_to :event
|
||||
belongs_to :price_category
|
||||
|
||||
@ -10,8 +13,9 @@ class EventPriceCategory < ActiveRecord::Base
|
||||
before_destroy :verify_no_associated_tickets
|
||||
|
||||
protected
|
||||
|
||||
def verify_no_associated_tickets
|
||||
tickets.count == 0
|
||||
throw(:abort) if tickets.count.zero?
|
||||
end
|
||||
|
||||
end
|
||||
|
@ -1,11 +1,14 @@
|
||||
class EventTheme < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# EventTheme is an optional filter used to categorize Events
|
||||
class EventTheme < ApplicationRecord
|
||||
extend FriendlyId
|
||||
friendly_id :name, use: :slugged
|
||||
|
||||
has_and_belongs_to_many :events, join_table: :events_event_themes, dependent: :destroy
|
||||
has_and_belongs_to_many :events, join_table: 'events_event_themes', dependent: :destroy
|
||||
|
||||
def safe_destroy
|
||||
if self.events.count == 0
|
||||
if events.count.zero?
|
||||
destroy
|
||||
else
|
||||
false
|
||||
|
@ -1,7 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Export is a reference to a file asynchronously generated by the system and downloadable by the user
|
||||
class Export < ActiveRecord::Base
|
||||
class Export < ApplicationRecord
|
||||
require 'fileutils'
|
||||
|
||||
belongs_to :user
|
||||
|
@ -1,7 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Group is way to bind users with prices. Different prices can be defined for each plan/reservable, for each group
|
||||
class Group < ActiveRecord::Base
|
||||
class Group < ApplicationRecord
|
||||
has_many :plans
|
||||
has_many :users
|
||||
has_many :statistic_profiles
|
||||
@ -19,8 +19,8 @@ class Group < ActiveRecord::Base
|
||||
|
||||
after_create :create_prices
|
||||
after_create :create_statistic_subtype
|
||||
after_update :update_statistic_subtype, if: :name_changed?
|
||||
after_update :disable_plans, if: :disabled_changed?
|
||||
after_update :update_statistic_subtype, if: :saved_change_to_name?
|
||||
after_update :disable_plans, if: :saved_change_to_disabled?
|
||||
|
||||
def destroyable?
|
||||
users.empty? and plans.empty?
|
||||
|
@ -3,7 +3,7 @@
|
||||
require 'checksum'
|
||||
|
||||
# Setting values, kept history of modifications
|
||||
class HistoryValue < ActiveRecord::Base
|
||||
class HistoryValue < ApplicationRecord
|
||||
belongs_to :setting
|
||||
belongs_to :invoicing_profile
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# iCalendar (RFC 5545) files, stored by URL and kept with their display configuration
|
||||
class ICalendar < ActiveRecord::Base
|
||||
class ICalendar < ApplicationRecord
|
||||
has_many :i_calendar_events, dependent: :destroy
|
||||
|
||||
after_create :sync_events
|
||||
|
@ -1,7 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# iCalendar (RFC 5545) event, belonging to an ICalendar object (its source)
|
||||
class ICalendarEvent < ActiveRecord::Base
|
||||
class ICalendarEvent < ApplicationRecord
|
||||
belongs_to :i_calendar
|
||||
|
||||
def self.update_or_create_by(args, attributes)
|
||||
|
@ -4,7 +4,7 @@ require 'file_size_validator'
|
||||
|
||||
# An Import is a file uploaded by an user that provides some data to the database.
|
||||
# Currently, this is used to import some users from a CSV file
|
||||
class Import < ActiveRecord::Base
|
||||
class Import < ApplicationRecord
|
||||
mount_uploader :attachment, ImportUploader
|
||||
|
||||
belongs_to :user
|
||||
|
@ -4,7 +4,7 @@ require 'checksum'
|
||||
|
||||
# Invoice correspond to a single purchase made by an user. This purchase may
|
||||
# include reservation(s) and/or a subscription
|
||||
class Invoice < ActiveRecord::Base
|
||||
class Invoice < ApplicationRecord
|
||||
include NotifyWith::NotificationAttachedObject
|
||||
require 'fileutils'
|
||||
scope :only_invoice, -> { where(type: nil) }
|
||||
|
@ -3,11 +3,11 @@
|
||||
require 'checksum'
|
||||
|
||||
# A single line inside an invoice. Can be a subscription or a reservation
|
||||
class InvoiceItem < ActiveRecord::Base
|
||||
class InvoiceItem < ApplicationRecord
|
||||
belongs_to :invoice
|
||||
belongs_to :subscription
|
||||
|
||||
has_one :invoice_item # to associated invoice_items of an invoice to invoice_items of an avoir
|
||||
has_one :invoice_item # associates invoice_items of an invoice to invoice_items of an Avoir
|
||||
|
||||
after_create :chain_record
|
||||
after_update :log_changes
|
||||
|
@ -3,7 +3,7 @@
|
||||
# This table will save the user's profile data needed for legal accounting (invoices, wallet, etc.)
|
||||
# Legal accounting must be kept for 10 years but GDPR requires that an user can delete his account at any time.
|
||||
# The data will be kept even if the user is deleted, but it will be unlinked from the user's account.
|
||||
class InvoicingProfile < ActiveRecord::Base
|
||||
class InvoicingProfile < ApplicationRecord
|
||||
belongs_to :user
|
||||
has_one :address, as: :placeable, dependent: :destroy
|
||||
accepts_nested_attributes_for :address, allow_destroy: true
|
||||
|
@ -1,4 +1,7 @@
|
||||
class Licence < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Licence is an agreement about intellectual property that can be used in Projects.
|
||||
class Licence < ApplicationRecord
|
||||
|
||||
has_many :projects
|
||||
validates :name, presence: true, length: { maximum: 160 }
|
||||
|
@ -1,7 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Machine is an hardware equipment hosted in the fablab that is available for reservation to the members
|
||||
class Machine < ActiveRecord::Base
|
||||
# Machine is an hardware equipment hosted in the Fablab that is available for reservation to the members
|
||||
class Machine < ApplicationRecord
|
||||
extend FriendlyId
|
||||
friendly_id :name, use: :slugged
|
||||
|
||||
@ -29,7 +29,7 @@ class Machine < ActiveRecord::Base
|
||||
|
||||
after_create :create_statistic_subtype
|
||||
after_create :create_machine_prices
|
||||
after_update :update_statistic_subtype, if: :name_changed?
|
||||
after_update :update_statistic_subtype, if: :saved_change_to_name?
|
||||
after_destroy :remove_statistic_subtype
|
||||
|
||||
def not_subscribe_price(group_id)
|
||||
|
@ -1,3 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# MachineFile is a file stored on the file system, associated with a Machine.
|
||||
# It is known as an attachment for a space, in the user interface.
|
||||
class MachineFile < Asset
|
||||
mount_uploader :attachment, MachineFileUploader
|
||||
end
|
||||
|
@ -1,3 +1,6 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# MachineImage is the main picture for a Machine
|
||||
class MachineImage < Asset
|
||||
mount_uploader :attachment, MachineImageUploader
|
||||
end
|
||||
|
@ -1,4 +1,8 @@
|
||||
class MachinesAvailability < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# MachinesAvailability is the relation table between a Machine and an Availability.
|
||||
# It defines periods in the agenda, when the given machine can be reserved by members.
|
||||
class MachinesAvailability < ApplicationRecord
|
||||
belongs_to :machine
|
||||
belongs_to :availability
|
||||
after_destroy :cleanup_availability
|
||||
@ -7,10 +11,10 @@ class MachinesAvailability < ActiveRecord::Base
|
||||
# availability if the deleted machine was the last of this availability slot, and the availability is not
|
||||
# currently being destroyed.
|
||||
def cleanup_availability
|
||||
unless availability.destroying
|
||||
if availability.machines_availabilities.size == 0
|
||||
availability.safe_destroy
|
||||
end
|
||||
end
|
||||
return if availability.destroying
|
||||
|
||||
return unless availability.machines_availabilities.empty?
|
||||
|
||||
availability.safe_destroy
|
||||
end
|
||||
end
|
||||
|
@ -1,4 +1,7 @@
|
||||
class Notification < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Notification is an in-system alert that is shown to a specific user until it is marked as read.
|
||||
class Notification < ApplicationRecord
|
||||
include NotifyWith::Notification
|
||||
|
||||
def get_meta_data(key)
|
||||
|
@ -1,3 +1,6 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# NotificationType defines the different types of Notification.
|
||||
class NotificationType
|
||||
include NotifyWith::NotificationType
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
class OAuth2Mapping < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# OAuth2Mapping defines a database field, saving user's data, that is mapped to an external API, that is authorized
|
||||
# through an external SSO of type oAuth 2
|
||||
class OAuth2Mapping < ApplicationRecord
|
||||
belongs_to :o_auth2_provider
|
||||
end
|
||||
|
@ -1,4 +1,8 @@
|
||||
class OAuth2Provider < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# OAuth2Provider is a special type of AuthProvider which provides authentication through an external SSO server using
|
||||
# the oAuth 2.0 protocol.
|
||||
class OAuth2Provider < ApplicationRecord
|
||||
has_one :auth_provider, as: :providable
|
||||
has_many :o_auth2_mappings, dependent: :destroy
|
||||
accepts_nested_attributes_for :o_auth2_mappings, allow_destroy: true
|
||||
|
@ -1,4 +1,7 @@
|
||||
class OfferDay < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# OfferDay provides a way for admins to extend the subscription of a member for free.
|
||||
class OfferDay < ApplicationRecord
|
||||
include NotifyWith::NotificationAttachedObject
|
||||
|
||||
has_many :invoices, as: :invoiced, dependent: :destroy
|
||||
|
@ -1,3 +1,6 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# OpenAPI provides an way for external apps to use Fab-manager's data through a REST API.
|
||||
module OpenAPI
|
||||
def self.table_name_prefix
|
||||
'open_api_'
|
||||
|
@ -1,4 +1,4 @@
|
||||
class OpenAPI::CallsCountTracing < ActiveRecord::Base
|
||||
class OpenAPI::CallsCountTracing < ApplicationRecord
|
||||
belongs_to :client, foreign_key: :open_api_client_id
|
||||
validates :client, :at, presence: true
|
||||
end
|
||||
|
@ -1,4 +1,4 @@
|
||||
class OpenAPI::Client < ActiveRecord::Base
|
||||
class OpenAPI::Client < ApplicationRecord
|
||||
has_many :calls_count_tracings, foreign_key: :open_api_client_id, dependent: :destroy
|
||||
has_secure_token
|
||||
validates :name, presence: true
|
||||
|
@ -1,4 +1,8 @@
|
||||
class Organization < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Organization is a special attribute for a member, used to mark him as corporation or a non-profit organization.
|
||||
# This is mainly used for invoicing.
|
||||
class Organization < ApplicationRecord
|
||||
belongs_to :profile
|
||||
belongs_to :invoicing_profile
|
||||
has_one :address, as: :placeable, dependent: :destroy
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
# Plan is a generic description of a subscription plan, which can be subscribed by a member to benefit from advantageous prices.
|
||||
# Subscribers can also get some Credits for some reservable items
|
||||
class Plan < ActiveRecord::Base
|
||||
class Plan < ApplicationRecord
|
||||
belongs_to :group
|
||||
|
||||
has_many :credits, dependent: :destroy
|
||||
@ -10,7 +10,6 @@ class Plan < ActiveRecord::Base
|
||||
has_many :machine_credits, -> { where(creditable_type: 'Machine') }, class_name: 'Credit'
|
||||
has_many :space_credits, -> { where(creditable_type: 'Space') }, class_name: 'Credit'
|
||||
has_many :subscriptions
|
||||
has_one :plan_image, as: :viewable, dependent: :destroy
|
||||
has_one :plan_file, as: :viewable, dependent: :destroy
|
||||
has_many :prices, dependent: :destroy
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# PlanFile is a file stored on the file system, associated with a Plan.
|
||||
# It is known as an information sheet for a plan, in the user interface.
|
||||
class PlanFile < Asset
|
||||
mount_uploader :attachment, PlanFileUploader
|
||||
end
|
||||
|
@ -1,4 +0,0 @@
|
||||
class PlanImage < Asset
|
||||
include ImageValidatorConcern
|
||||
mount_uploader :attachment, PlanImageUploader
|
||||
end
|
@ -1,6 +1,8 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class PlansAvailability < ActiveRecord::Base
|
||||
# PlansAvailability is the relation table between a Plan and an Availability.
|
||||
# An Availability which is associated with a Plan can only be booked by members having subscribed to this Plan.
|
||||
class PlansAvailability < ApplicationRecord
|
||||
belongs_to :plan
|
||||
belongs_to :availability
|
||||
end
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
# Store customized price for various items (Machine, Space), depending on the group and on the plan
|
||||
# Also provides a static helper method to compute the price details of a shopping cart
|
||||
class Price < ActiveRecord::Base
|
||||
class Price < ApplicationRecord
|
||||
belongs_to :group
|
||||
belongs_to :plan
|
||||
belongs_to :priceable, polymorphic: true
|
||||
@ -29,16 +29,16 @@ class Price < ActiveRecord::Base
|
||||
all_elements[:slots] = []
|
||||
|
||||
# initialize Plan
|
||||
if user.subscribed_plan
|
||||
plan = user.subscribed_plan
|
||||
new_plan_being_bought = false
|
||||
elsif plan_id
|
||||
plan = Plan.find(plan_id)
|
||||
new_plan_being_bought = true
|
||||
else
|
||||
plan = nil
|
||||
new_plan_being_bought = false
|
||||
end
|
||||
plan = if user.subscribed_plan
|
||||
new_plan_being_bought = false
|
||||
user.subscribed_plan
|
||||
elsif plan_id
|
||||
new_plan_being_bought = true
|
||||
Plan.find(plan_id)
|
||||
else
|
||||
new_plan_being_bought = false
|
||||
nil
|
||||
end
|
||||
|
||||
# === compute reservation price ===
|
||||
|
||||
|
@ -1,13 +1,19 @@
|
||||
class PriceCategory < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# PriceCategory is a way to segment prices for an Event.
|
||||
# By default, each Events have a standard price but you may want, for example, to define a reduced fare for students,
|
||||
# and another reduced fare for children under 8. Each of these prices are defined in an EventPriceCategory.
|
||||
# You can choose to use each PriceCategory or not, for each Event you create.
|
||||
class PriceCategory < ApplicationRecord
|
||||
has_many :event_price_category
|
||||
has_many :events, through: :event_price_categories
|
||||
|
||||
validates :name, :presence => true
|
||||
validates :name, uniqueness: {case_sensitive: false}
|
||||
validates :conditions, :presence => true
|
||||
validates :name, presence: true
|
||||
validates :name, uniqueness: { case_sensitive: false }
|
||||
validates :conditions, presence: true
|
||||
|
||||
def safe_destroy
|
||||
if event_price_category.count == 0
|
||||
if event_price_category.count.zero?
|
||||
destroy
|
||||
else
|
||||
false
|
||||
|
@ -1,7 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Personal data attached to an user (like first_name, date of birth, etc.)
|
||||
class Profile < ActiveRecord::Base
|
||||
class Profile < ApplicationRecord
|
||||
belongs_to :user
|
||||
has_one :user_avatar, as: :viewable, dependent: :destroy
|
||||
accepts_nested_attributes_for :user_avatar,
|
||||
@ -28,7 +28,7 @@ class Profile < ActiveRecord::Base
|
||||
blacklist = %w[id user_id created_at updated_at]
|
||||
# model-relationships must be added manually
|
||||
additional = [%w[avatar string], %w[address string], %w[organization_name string], %w[organization_address string]]
|
||||
Profile.column_types
|
||||
Profile.columns_hash
|
||||
.map { |k, v| [k, v.type.to_s] }
|
||||
.delete_if { |col| blacklist.include?(col[0]) }
|
||||
.concat(additional)
|
||||
@ -37,7 +37,7 @@ class Profile < ActiveRecord::Base
|
||||
private
|
||||
|
||||
def invoicing_data_was_modified?
|
||||
first_name_changed? or last_name_changed? or new_record?
|
||||
saved_change_to_first_name? || saved_change_to_last_name? || new_record?
|
||||
end
|
||||
|
||||
def update_invoicing_profile
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
# Project is the documentation about an object built by a fab-user
|
||||
# It can describe the steps taken by the fab-user to build his object, provide photos, description, attached CAO files, etc.
|
||||
class Project < ActiveRecord::Base
|
||||
class Project < ApplicationRecord
|
||||
include AASM
|
||||
include NotifyWith::NotificationAttachedObject
|
||||
include OpenlabSync
|
||||
@ -149,7 +149,7 @@ class Project < ActiveRecord::Base
|
||||
end
|
||||
|
||||
def after_save_and_publish
|
||||
return unless state_changed? && published?
|
||||
return unless saved_change_to_state? && published?
|
||||
|
||||
update_columns(published_at: DateTime.current)
|
||||
notify_admin_when_project_published
|
||||
|
@ -1,6 +1,6 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# CAO file attached to a project documentation
|
||||
# CAD file attached to a project documentation
|
||||
class ProjectCao < Asset
|
||||
mount_uploader :attachment, ProjectCaoUploader
|
||||
|
||||
|
@ -1,4 +1,7 @@
|
||||
class ProjectStep < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# ProjectStep is a detail in the documentation of a Project.
|
||||
class ProjectStep < ApplicationRecord
|
||||
belongs_to :project
|
||||
has_many :project_step_images, as: :viewable, dependent: :destroy
|
||||
accepts_nested_attributes_for :project_step_images, allow_destroy: true, reject_if: :all_blank
|
||||
|
@ -1,6 +1,6 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Images for the documentation of a project step
|
||||
# Images for the documentation of a ProjectStep
|
||||
class ProjectStepImage < Asset
|
||||
include ImageValidatorConcern
|
||||
mount_uploader :attachment, ProjectImageUploader
|
||||
|
@ -1,4 +1,8 @@
|
||||
class ProjectUser < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# ProjectUser is the relation table between a Project and an User.
|
||||
# Users are collaborators to a Project, with write access if they have confirmed their participation.
|
||||
class ProjectUser < ApplicationRecord
|
||||
include NotifyWith::NotificationAttachedObject
|
||||
|
||||
belongs_to :project
|
||||
@ -6,13 +10,15 @@ class ProjectUser < ActiveRecord::Base
|
||||
|
||||
before_create :generate_valid_token
|
||||
after_commit :notify_project_collaborator_to_valid, on: :create
|
||||
after_update :notify_project_author_when_collaborator_valid, if: :is_valid_changed?
|
||||
after_update :notify_project_author_when_collaborator_valid, if: :saved_change_to_is_valid?
|
||||
|
||||
private
|
||||
|
||||
def generate_valid_token
|
||||
begin
|
||||
loop do
|
||||
self.valid_token = SecureRandom.hex
|
||||
end while self.class.exists?(valid_token: valid_token)
|
||||
break unless self.class.exists?(valid_token: valid_token)
|
||||
end
|
||||
end
|
||||
|
||||
def notify_project_collaborator_to_valid
|
||||
|
@ -1,6 +1,9 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class Reservation < ActiveRecord::Base
|
||||
# Reservation is a Slot or a Ticket booked by a member.
|
||||
# Slots are for Machine, Space and Training reservations.
|
||||
# Tickets are for Event reservations.
|
||||
class Reservation < ApplicationRecord
|
||||
include NotifyWith::NotificationAttachedObject
|
||||
|
||||
belongs_to :statistic_profile
|
||||
|
@ -1,4 +1,8 @@
|
||||
class Role < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Role is a authorization level for users in the application.
|
||||
# Currently, possible roles are: admin or member
|
||||
class Role < ApplicationRecord
|
||||
has_and_belongs_to_many :users, join_table: 'users_roles'
|
||||
belongs_to :resource, polymorphic: true
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
# For some settings, changing them will involve some callback actions (like rebuilding the stylesheets if the theme color Setting is changed).
|
||||
# A full history of the previous values is kept in database with the date and the author of the change
|
||||
# after_update callback is handled by SettingService
|
||||
class Setting < ActiveRecord::Base
|
||||
class Setting < ApplicationRecord
|
||||
has_many :history_values
|
||||
validates :name, inclusion:
|
||||
{ in: %w[about_title
|
||||
|
@ -2,8 +2,8 @@
|
||||
|
||||
# Time range of duration defined by ApplicationHelper::SLOT_DURATION, slicing an Availability.
|
||||
# During a slot a Reservation is possible
|
||||
# Only reserved slots are persisted in DB, others are instanciated on the fly
|
||||
class Slot < ActiveRecord::Base
|
||||
# Only reserved slots are persisted in DB, others are instantiated on the fly
|
||||
class Slot < ApplicationRecord
|
||||
include NotifyWith::NotificationAttachedObject
|
||||
|
||||
has_many :slots_reservations, dependent: :destroy
|
||||
@ -53,11 +53,11 @@ class Slot < ActiveRecord::Base
|
||||
end
|
||||
|
||||
def dates_were_modified?
|
||||
start_at_changed? or end_at_changed?
|
||||
saved_change_to_start_at? || saved_change_to_end_at?
|
||||
end
|
||||
|
||||
def canceled?
|
||||
canceled_at_changed?
|
||||
saved_change_to_canceled_at?
|
||||
end
|
||||
|
||||
def set_ex_start_end_dates_attrs
|
||||
|
@ -1,4 +1,7 @@
|
||||
class SlotsReservation < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# SlotsReservation is the relation table between a Slot and a Reservation.
|
||||
class SlotsReservation < ApplicationRecord
|
||||
belongs_to :slot
|
||||
belongs_to :reservation
|
||||
after_destroy :cleanup_slots
|
||||
@ -6,8 +9,8 @@ class SlotsReservation < ActiveRecord::Base
|
||||
# when the SlotsReservation is deleted (from Reservation destroy cascade), we delete the
|
||||
# corresponding slot
|
||||
def cleanup_slots
|
||||
unless slot.destroying
|
||||
slot.destroy
|
||||
end
|
||||
return unless slot.destroying
|
||||
|
||||
slot.destroy
|
||||
end
|
||||
end
|
||||
|
@ -1,4 +1,9 @@
|
||||
class Space < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Space is a reservable item that can be booked by multiple people on the same Slot.
|
||||
# It represents a physical place, in the Fablab, like a meeting room where multiple people will be able to work at
|
||||
# the same time.
|
||||
class Space < ApplicationRecord
|
||||
extend FriendlyId
|
||||
friendly_id :name, use: :slugged
|
||||
|
||||
@ -21,7 +26,7 @@ class Space < ActiveRecord::Base
|
||||
|
||||
after_create :create_statistic_subtype
|
||||
after_create :create_space_prices
|
||||
after_update :update_statistic_subtype, if: :name_changed?
|
||||
after_update :update_statistic_subtype, if: :saved_change_to_name?
|
||||
after_destroy :remove_statistic_subtype
|
||||
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# SpaceFile is a file stored on the file system, associated with a Space.
|
||||
class SpaceFile < Asset
|
||||
mount_uploader :attachment, SpaceFileUploader
|
||||
end
|
||||
|
@ -1,4 +1,6 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# SpaceImage is the main picture for a Space
|
||||
class SpaceImage < Asset
|
||||
mount_uploader :attachment, SpaceImageUploader
|
||||
end
|
@ -1,4 +1,8 @@
|
||||
class SpacesAvailability < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# SpacesAvailability is the relation table between a Space and an Availability.
|
||||
# It defines periods in the agenda, when the given space can be reserved by members.
|
||||
class SpacesAvailability < ApplicationRecord
|
||||
belongs_to :space
|
||||
belongs_to :availability
|
||||
after_destroy :cleanup_availability
|
||||
@ -7,8 +11,8 @@ class SpacesAvailability < ActiveRecord::Base
|
||||
# availability. We don't use 'dependent: destroy' as we need to prevent conflicts if the destroy came from
|
||||
# the Availability destroy cascade.
|
||||
def cleanup_availability
|
||||
unless availability.destroying
|
||||
availability.safe_destroy
|
||||
end
|
||||
return unless availability.destroying
|
||||
|
||||
availability.safe_destroy
|
||||
end
|
||||
end
|
||||
|
@ -1,3 +1,8 @@
|
||||
class StatisticCustomAggregation < ActiveRecord::Base
|
||||
# frozen_string_literal: true
|
||||
|
||||
# StatisticCustomAggregation is an ElasticSearch aggregation that will run when the end-user is browsing the statistics
|
||||
# page for the related StatisticType.
|
||||
# See https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations.html
|
||||
class StatisticCustomAggregation < ApplicationRecord
|
||||
belongs_to :statistic_type
|
||||
end
|
||||
|
@ -1,3 +1,3 @@
|
||||
class StatisticField < ActiveRecord::Base
|
||||
class StatisticField < ApplicationRecord
|
||||
has_one :statistic_index
|
||||
end
|
||||
|
@ -1,3 +1,3 @@
|
||||
class StatisticGraph < ActiveRecord::Base
|
||||
class StatisticGraph < ApplicationRecord
|
||||
belongs_to :statistic_index
|
||||
end
|
||||
|
@ -1,4 +1,4 @@
|
||||
class StatisticIndex < ActiveRecord::Base
|
||||
class StatisticIndex < ApplicationRecord
|
||||
has_many :statistic_types
|
||||
has_many :statistic_fields
|
||||
has_one :statistic_graph
|
||||
|
@ -6,7 +6,7 @@ AVG_DAYS_PER_YEAR = 365.2425
|
||||
# GDPR requires that an user can delete his account at any time but we need to keep the statistics original data to being able to
|
||||
# rebuild them at any time.
|
||||
# The data will be kept even if the user is deleted, but it will be unlinked from the user's account (ie. anonymized)
|
||||
class StatisticProfile < ActiveRecord::Base
|
||||
class StatisticProfile < ApplicationRecord
|
||||
belongs_to :user
|
||||
belongs_to :group
|
||||
belongs_to :role
|
||||
|
@ -1,7 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# Stores trainings validated per user (non validated trainings are only recorded in reservations)
|
||||
class StatisticProfileTraining < ActiveRecord::Base
|
||||
class StatisticProfileTraining < ApplicationRecord
|
||||
include NotifyWith::NotificationAttachedObject
|
||||
|
||||
belongs_to :statistic_profile
|
||||
|
@ -1,4 +1,4 @@
|
||||
class StatisticSubType < ActiveRecord::Base
|
||||
class StatisticSubType < ApplicationRecord
|
||||
has_many :statistic_type_sub_types, dependent: :destroy
|
||||
has_many :statistic_types, through: :statistic_type_sub_types
|
||||
end
|
||||
|
@ -1,4 +1,4 @@
|
||||
class StatisticType < ActiveRecord::Base
|
||||
class StatisticType < ApplicationRecord
|
||||
has_one :statistic_index
|
||||
has_many :statistic_type_sub_types
|
||||
has_many :statistic_sub_types, through: :statistic_type_sub_types
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user