admin_lte-rails 2.2.0.9 → 2.3.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -0
  3. data/README.md +10 -0
  4. data/Rakefile +14 -12
  5. data/admin_lte-rails.gemspec +1 -1
  6. data/app/assets/javascripts/admin_lte/app.js +35 -20
  7. data/app/assets/stylesheets/admin_lte/ltr/AdminLTE.scss +929 -235
  8. data/app/assets/stylesheets/admin_lte/ltr/admin_lte.css +2 -2
  9. data/app/assets/stylesheets/admin_lte/ltr/skins/_all-skins.scss +136 -124
  10. data/app/assets/stylesheets/admin_lte/ltr/skins/skin-black-light.scss +12 -11
  11. data/app/assets/stylesheets/admin_lte/ltr/skins/skin-black.scss +12 -11
  12. data/app/assets/stylesheets/admin_lte/ltr/skins/skin-blue-light.scss +12 -11
  13. data/app/assets/stylesheets/admin_lte/ltr/skins/skin-blue.scss +12 -11
  14. data/app/assets/stylesheets/admin_lte/ltr/skins/skin-green-light.scss +11 -10
  15. data/app/assets/stylesheets/admin_lte/ltr/skins/skin-green.scss +11 -10
  16. data/app/assets/stylesheets/admin_lte/ltr/skins/skin-purple-light.scss +11 -10
  17. data/app/assets/stylesheets/admin_lte/ltr/skins/skin-purple.scss +11 -10
  18. data/app/assets/stylesheets/admin_lte/ltr/skins/skin-red-light.scss +11 -10
  19. data/app/assets/stylesheets/admin_lte/ltr/skins/skin-red.scss +11 -10
  20. data/app/assets/stylesheets/admin_lte/ltr/skins/skin-yellow-light.scss +11 -10
  21. data/app/assets/stylesheets/admin_lte/ltr/skins/skin-yellow.scss +11 -10
  22. data/app/assets/stylesheets/admin_lte/rtl/AdminLTE.scss +929 -235
  23. data/app/assets/stylesheets/admin_lte/rtl/admin_lte.css +3 -2
  24. data/app/assets/stylesheets/admin_lte/rtl/sidebar_rtl_fix.scss +31 -0
  25. data/app/assets/stylesheets/admin_lte/rtl/skins/_all-skins.scss +136 -124
  26. data/app/assets/stylesheets/admin_lte/rtl/skins/skin-black-light.scss +12 -11
  27. data/app/assets/stylesheets/admin_lte/rtl/skins/skin-black.scss +12 -11
  28. data/app/assets/stylesheets/admin_lte/rtl/skins/skin-blue-light.scss +12 -11
  29. data/app/assets/stylesheets/admin_lte/rtl/skins/skin-blue.scss +12 -11
  30. data/app/assets/stylesheets/admin_lte/rtl/skins/skin-green-light.scss +11 -10
  31. data/app/assets/stylesheets/admin_lte/rtl/skins/skin-green.scss +11 -10
  32. data/app/assets/stylesheets/admin_lte/rtl/skins/skin-purple-light.scss +11 -10
  33. data/app/assets/stylesheets/admin_lte/rtl/skins/skin-purple.scss +11 -10
  34. data/app/assets/stylesheets/admin_lte/rtl/skins/skin-red-light.scss +11 -10
  35. data/app/assets/stylesheets/admin_lte/rtl/skins/skin-red.scss +11 -10
  36. data/app/assets/stylesheets/admin_lte/rtl/skins/skin-yellow-light.scss +11 -10
  37. data/app/assets/stylesheets/admin_lte/rtl/skins/skin-yellow.scss +11 -10
  38. data/lib/admin_lte-rails/version.rb +1 -1
  39. data/lib/ltr/admin_lte.css +2 -2
  40. data/lib/rtl/_sidebar_rtl_fix.scss +31 -0
  41. data/lib/rtl/admin_lte.css +3 -2
  42. metadata +7 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 639b3e1e5e002d07d0661c3941ff2ea36bca01ff
4
- data.tar.gz: db551ef3d006310d980396b6c5aafadb5a2d5c7c
3
+ metadata.gz: 99937259b4fc8216d6a9d3d676269441c534cbe1
4
+ data.tar.gz: 3bec561fa5707baf023bf8d7b5c74aea5e067d9e
5
5
  SHA512:
6
- metadata.gz: 4438e25e5acc71a5fee25a1d5be25139efb7dfe500a16b628c5b9994f7c019e5cbaf4aac692e426e49a333f9bbf3aecce5e3c48adacb5e872cc33df3d238565b
7
- data.tar.gz: bb04232ad95b42a67d86dec4fc90c7a997848a2af2edd805cca58fe12feca52b93c1f497c433aa09de699aab71f61035783f2266ddf79d73b04c6ab934c5a4cb
6
+ metadata.gz: 2ce2dd4a28abd9d3e4af6a741af126dd04ab37ddcef3065c33ec534c0b22f2e1a94c4fed5c15ae3c5cc5f284154219d1197077633fb1ba472651629048322ab7
7
+ data.tar.gz: c21585be619b0a3778f606f5c2208e341aa38ce54f8dc97044f79ca1c9b21427592db05991ec26723372d7fca002ab97093bfaad95c7d139cb977693b52ecc96
data/.gitignore CHANGED
@@ -8,3 +8,6 @@
8
8
  /spec/reports/
9
9
  /tmp/
10
10
  node_modules/
11
+ app/assets/javascripts/admin_lte/.js
12
+ app/assets/javascripts/admin_lte/demo.js
13
+ app/assets/javascripts/admin_lte/pages/
data/README.md CHANGED
@@ -11,7 +11,17 @@ contributors.
11
11
  Add this line to your application's Gemfile:
12
12
 
13
13
  ```ruby
14
+ source 'https://rails-assets.org' do
15
+ gem 'rails-assets-bootstrap-rtl'
16
+ gem 'rails-assets-jquery-knob'
17
+ gem 'rails-assets-bootstrap-daterangepicker'
18
+ gem 'rails-assets-jquery-sparkline'
19
+ gem 'rails-assets-jquery-icheck'
20
+ gem 'rails-assets-admin-lte'
21
+ end
22
+
14
23
  gem 'admin_lte-rails'
24
+
15
25
  ```
16
26
  And then execute:
17
27
 
data/Rakefile CHANGED
@@ -19,7 +19,7 @@ task :convert do
19
19
  lib_path = File.expand_path('../lib', __FILE__)
20
20
  cssjanus = File.expand_path('../lib/to_rtl.js', __FILE__)
21
21
  style_dir = "#{app_path}/assets/stylesheets/admin_lte"
22
- js_dir = "#{app_path}/assets/javscripts/admin-lte"
22
+ js_dir = "#{app_path}/assets/javascripts/admin_lte"
23
23
 
24
24
  orig_style = "#{dir}/stylesheets/admin-lte"
25
25
  admin_lte_font = "#{style_dir}/admin_lte_font.scss"
@@ -48,7 +48,7 @@ task :convert do
48
48
  `tail -n +2 #{file} > #{new_path}`
49
49
  end
50
50
 
51
- `nodejs #{cssjanus} #{new_path} > #{rtl_path}`
51
+ `node #{cssjanus} #{new_path} > #{rtl_path}`
52
52
  puts "================="
53
53
  end
54
54
  end
@@ -62,22 +62,24 @@ task :convert do
62
62
  "#{style_dir}/rtl/admin_lte.css")
63
63
  FileUtils.cp("#{lib_path}/rtl/_bootstrap.scss",
64
64
  "#{style_dir}/rtl/bootstrap_manifest.scss")
65
+ FileUtils.cp("#{lib_path}/rtl/_sidebar_rtl_fix.scss",
66
+ "#{style_dir}/rtl/sidebar_rtl_fix.scss")
65
67
 
66
- # Dir.glob("#{dir}/javascripts/**/*") do |file|
68
+ Dir.glob("#{dir}/javascripts/**/*") do |file|
67
69
 
68
- # new_path = file.gsub(orig_js, "#{js_dir}/")
70
+ new_path = file.gsub(orig_js, "#{js_dir}/")
69
71
 
70
- # FileUtils.mkdir_p File.dirname(new_path)
72
+ FileUtils.mkdir_p File.dirname(new_path)
71
73
 
72
74
 
73
- # unless File.directory? file
74
- # puts "Source: #{file}"
75
- # puts "DST: #{new_path}"
76
- # puts "================="
75
+ unless File.directory? file
76
+ puts "Source: #{file}"
77
+ puts "DST: #{new_path}"
78
+ puts "================="
77
79
 
78
- # FileUtils.cp(file, new_path)
79
- # end
80
- # end
80
+ FileUtils.cp(file, new_path)
81
+ end
82
+ end
81
83
 
82
84
 
83
85
 
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ['lib']
21
21
 
22
- spec.add_dependency 'rails-assets-admin-lte', '~> 2.2.0'
22
+ spec.add_dependency 'rails-assets-admin-lte', '~> 2.3.2'
23
23
  spec.add_dependency 'jquery-rails'
24
24
  spec.add_dependency 'font-awesome-rails'
25
25
  spec.add_dependency 'jquery-ui-rails'
@@ -7,7 +7,7 @@
7
7
  * @Author Almsaeed Studio
8
8
  * @Support <http://www.almsaeedstudio.com>
9
9
  * @Email <support@almsaeedstudio.com>
10
- * @version 2.1.2
10
+ * @version 2.3.2
11
11
  * @license MIT <http://opensource.org/licenses/MIT>
12
12
  */
13
13
 
@@ -140,11 +140,14 @@ $.AdminLTE.options = {
140
140
  $(function () {
141
141
  "use strict";
142
142
 
143
+ //Fix for IE page transitions
144
+ $("body").removeClass("hold-transition");
145
+
143
146
  //Extend options if external options exist
144
147
  if (typeof AdminLTEOptions !== "undefined") {
145
148
  $.extend(true,
146
- $.AdminLTE.options,
147
- AdminLTEOptions);
149
+ $.AdminLTE.options,
150
+ AdminLTEOptions);
148
151
  }
149
152
 
150
153
  //Easy access to options
@@ -311,7 +314,7 @@ function _init() {
311
314
  var screenSizes = $.AdminLTE.options.screenSizes;
312
315
 
313
316
  //Enable sidebar toggle
314
- $(toggleBtn).on('click', function (e) {
317
+ $(document).on('click', toggleBtn, function (e) {
315
318
  e.preventDefault();
316
319
 
317
320
  //Enable sidebar push menu
@@ -341,8 +344,8 @@ function _init() {
341
344
 
342
345
  //Enable expand on hover for sidebar mini
343
346
  if ($.AdminLTE.options.sidebarExpandOnHover
344
- || ($('body').hasClass('fixed')
345
- && $('body').hasClass('sidebar-mini'))) {
347
+ || ($('body').hasClass('fixed')
348
+ && $('body').hasClass('sidebar-mini'))) {
346
349
  this.expandOnHover();
347
350
  }
348
351
  },
@@ -352,14 +355,14 @@ function _init() {
352
355
  //Expand sidebar on hover
353
356
  $('.main-sidebar').hover(function () {
354
357
  if ($('body').hasClass('sidebar-mini')
355
- && $("body").hasClass('sidebar-collapse')
356
- && $(window).width() > screenWidth) {
358
+ && $("body").hasClass('sidebar-collapse')
359
+ && $(window).width() > screenWidth) {
357
360
  _this.expand();
358
361
  }
359
362
  }, function () {
360
363
  if ($('body').hasClass('sidebar-mini')
361
- && $('body').hasClass('sidebar-expanded-on-hover')
362
- && $(window).width() > screenWidth) {
364
+ && $('body').hasClass('sidebar-expanded-on-hover')
365
+ && $(window).width() > screenWidth) {
363
366
  _this.collapse();
364
367
  }
365
368
  });
@@ -385,13 +388,13 @@ function _init() {
385
388
  $.AdminLTE.tree = function (menu) {
386
389
  var _this = this;
387
390
  var animationSpeed = $.AdminLTE.options.animationSpeed;
388
- $(document).on('click', menu + ' li a', function (e) {
391
+ $(menu).on('click', 'li a', function (e) {
389
392
  //Get the clicked link and the next element
390
393
  var $this = $(this);
391
394
  var checkElement = $this.next();
392
395
 
393
396
  //Check if the next element is a menu and is visible
394
- if ((checkElement.is('.treeview-menu')) && (checkElement.is(':visible'))) {
397
+ if ((checkElement.is('.treeview-menu')) && (checkElement.is(':visible')) && (!$('body').hasClass('sidebar-collapse'))) {
395
398
  //Close the menu
396
399
  checkElement.slideUp(animationSpeed, function () {
397
400
  checkElement.removeClass('menu-open');
@@ -452,7 +455,7 @@ function _init() {
452
455
  e.preventDefault();
453
456
  //If the sidebar is not open
454
457
  if (!sidebar.hasClass('control-sidebar-open')
455
- && !$('body').hasClass('control-sidebar-open')) {
458
+ && !$('body').hasClass('control-sidebar-open')) {
456
459
  //Open the sidebar
457
460
  _this.open(sidebar, o.slide);
458
461
  } else {
@@ -560,8 +563,8 @@ function _init() {
560
563
  if (!box.hasClass("collapsed-box")) {
561
564
  //Convert minus into plus
562
565
  element.children(":first")
563
- .removeClass(_this.icons.collapse)
564
- .addClass(_this.icons.open);
566
+ .removeClass(_this.icons.collapse)
567
+ .addClass(_this.icons.open);
565
568
  //Hide the content
566
569
  box_content.slideUp(_this.animationSpeed, function () {
567
570
  box.addClass("collapsed-box");
@@ -569,8 +572,8 @@ function _init() {
569
572
  } else {
570
573
  //Convert plus into minus
571
574
  element.children(":first")
572
- .removeClass(_this.icons.open)
573
- .addClass(_this.icons.collapse);
575
+ .removeClass(_this.icons.open)
576
+ .addClass(_this.icons.collapse);
574
577
  //Show the content
575
578
  box_content.slideDown(_this.animationSpeed, function () {
576
579
  box.removeClass("collapsed-box");
@@ -669,14 +672,16 @@ function _init() {
669
672
 
670
673
  })(jQuery);
671
674
 
672
- /*
673
- * EXPLICIT BOX ACTIVATION
675
+ /*
676
+ * EXPLICIT BOX CONTROLS
674
677
  * -----------------------
675
678
  * This is a custom plugin to use with the component BOX. It allows you to activate
676
- * a box inserted in the DOM after the app.js was loaded.
679
+ * a box inserted in the DOM after the app.js was loaded, toggle and remove box.
677
680
  *
678
681
  * @type plugin
679
682
  * @usage $("#box-widget").activateBox();
683
+ * @usage $("#box-widget").toggleBox();
684
+ * @usage $("#box-widget").removeBox();
680
685
  */
681
686
  (function ($) {
682
687
 
@@ -686,6 +691,16 @@ function _init() {
686
691
  $.AdminLTE.boxWidget.activate(this);
687
692
  };
688
693
 
694
+ $.fn.toggleBox = function(){
695
+ var button = $($.AdminLTE.boxWidget.selectors.collapse, this);
696
+ $.AdminLTE.boxWidget.collapse(button);
697
+ };
698
+
699
+ $.fn.removeBox = function(){
700
+ var button = $($.AdminLTE.boxWidget.selectors.remove, this);
701
+ $.AdminLTE.boxWidget.remove(button);
702
+ };
703
+
689
704
  })(jQuery);
690
705
 
691
706
  /*
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * AdminLTE v2.1.2
2
+ * AdminLTE v2.3.2
3
3
  * Author: Almsaeed Studio
4
4
  * Website: Almsaeed Studio <http://almsaeedstudio.com>
5
5
  * License: Open source - MIT
@@ -29,7 +29,7 @@ body {
29
29
  .wrapper {
30
30
  min-height: 100%;
31
31
  position: relative;
32
- overflow: hidden!important;
32
+ overflow: hidden;
33
33
  }
34
34
  .wrapper:before,
35
35
  .wrapper:after {
@@ -128,6 +128,18 @@ body {
128
128
  .fixed.layout-boxed .wrapper {
129
129
  max-width: 100%;
130
130
  }
131
+ body.hold-transition .content-wrapper,
132
+ body.hold-transition .right-side,
133
+ body.hold-transition .main-footer,
134
+ body.hold-transition .main-sidebar,
135
+ body.hold-transition .left-side,
136
+ body.hold-transition .main-header > .navbar,
137
+ body.hold-transition .main-header .logo {
138
+ /* Fix for IE */
139
+ -webkit-transition: none;
140
+ -o-transition: none;
141
+ transition: none;
142
+ }
131
143
  /* Content */
132
144
  .content {
133
145
  min-height: 250px;
@@ -193,25 +205,25 @@ a:focus {
193
205
  border-radius: 0;
194
206
  }
195
207
  .layout-top-nav .main-header > .navbar {
196
- margin-left: 0!important;
208
+ margin-left: 0;
197
209
  }
198
- .main-header #navbar-search-input {
210
+ .main-header #navbar-search-input.form-control {
199
211
  background: rgba(255, 255, 255, 0.2);
200
212
  border-color: transparent;
201
213
  }
202
- .main-header #navbar-search-input:focus,
203
- .main-header #navbar-search-input:active {
204
- border-color: rgba(0, 0, 0, 0.1) !important;
214
+ .main-header #navbar-search-input.form-control:focus,
215
+ .main-header #navbar-search-input.form-control:active {
216
+ border-color: rgba(0, 0, 0, 0.1);
205
217
  background: rgba(255, 255, 255, 0.9);
206
218
  }
207
- .main-header #navbar-search-input::-moz-placeholder {
219
+ .main-header #navbar-search-input.form-control::-moz-placeholder {
208
220
  color: #ccc;
209
221
  opacity: 1;
210
222
  }
211
- .main-header #navbar-search-input:-ms-input-placeholder {
223
+ .main-header #navbar-search-input.form-control:-ms-input-placeholder {
212
224
  color: #ccc;
213
225
  }
214
- .main-header #navbar-search-input::-webkit-input-placeholder {
226
+ .main-header #navbar-search-input.form-control::-webkit-input-placeholder {
215
227
  color: #ccc;
216
228
  }
217
229
  .main-header .navbar-custom-menu,
@@ -313,7 +325,7 @@ a:focus {
313
325
  .content-header > .breadcrumb {
314
326
  float: right;
315
327
  background: transparent;
316
- margin-top: 0px;
328
+ margin-top: 0;
317
329
  margin-bottom: 0;
318
330
  font-size: 12px;
319
331
  padding: 7px 5px;
@@ -377,7 +389,6 @@ a:focus {
377
389
  .main-header .navbar {
378
390
  width: 100%;
379
391
  float: none;
380
- position: relative!important;
381
392
  }
382
393
  .main-header .navbar {
383
394
  margin: 0;
@@ -385,14 +396,10 @@ a:focus {
385
396
  .main-header .navbar-custom-menu {
386
397
  float: right;
387
398
  }
388
- .main-sidebar,
389
- .left-side {
390
- padding-top: 100px!important;
391
- }
392
399
  }
393
400
  @media (max-width: 991px) {
394
401
  .navbar-collapse.pull-left {
395
- float: none!important;
402
+ float: none !important;
396
403
  }
397
404
  .navbar-collapse.pull-left + .navbar-custom-menu {
398
405
  display: block;
@@ -419,6 +426,12 @@ a:focus {
419
426
  -o-transition: -o-transform 0.3s ease-in-out, width 0.3s ease-in-out;
420
427
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
421
428
  }
429
+ @media (max-width: 767px) {
430
+ .main-sidebar,
431
+ .left-side {
432
+ padding-top: 100px;
433
+ }
434
+ }
422
435
  @media (max-width: 767px) {
423
436
  .main-sidebar,
424
437
  .left-side {
@@ -450,7 +463,7 @@ a:focus {
450
463
  padding-bottom: 10px;
451
464
  }
452
465
  .sidebar-form input:focus {
453
- border-color: transparent!important;
466
+ border-color: transparent;
454
467
  }
455
468
  .user-panel {
456
469
  position: relative;
@@ -570,7 +583,7 @@ a:focus {
570
583
  .sidebar-mini.sidebar-collapse .content-wrapper,
571
584
  .sidebar-mini.sidebar-collapse .right-side,
572
585
  .sidebar-mini.sidebar-collapse .main-footer {
573
- margin-left: 50px!important;
586
+ margin-left: 50px !important;
574
587
  z-index: 840;
575
588
  }
576
589
  .sidebar-mini.sidebar-collapse .main-sidebar {
@@ -578,7 +591,7 @@ a:focus {
578
591
  -ms-transform: translate(0, 0);
579
592
  -o-transform: translate(0, 0);
580
593
  transform: translate(0, 0);
581
- width: 50px!important;
594
+ width: 50px !important;
582
595
  z-index: 850;
583
596
  }
584
597
  .sidebar-mini.sidebar-collapse .sidebar-menu > li {
@@ -600,7 +613,7 @@ a:focus {
600
613
  }
601
614
  .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span:not(.pull-right),
602
615
  .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
603
- display: block!important;
616
+ display: block !important;
604
617
  position: absolute;
605
618
  width: 180px;
606
619
  left: 50px;
@@ -621,7 +634,7 @@ a:focus {
621
634
  .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu,
622
635
  .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > .pull-right,
623
636
  .sidebar-mini.sidebar-collapse .sidebar-menu li.header {
624
- display: none!important;
637
+ display: none !important;
625
638
  -webkit-transform: translateZ(0);
626
639
  }
627
640
  .sidebar-mini.sidebar-collapse .main-header .logo {
@@ -643,7 +656,7 @@ a:focus {
643
656
  .sidebar-menu,
644
657
  .main-sidebar .user-panel,
645
658
  .sidebar-menu > li.header {
646
- white-space: nowrap!important;
659
+ white-space: nowrap;
647
660
  overflow: hidden;
648
661
  }
649
662
  .sidebar-menu:hover {
@@ -659,8 +672,8 @@ a:focus {
659
672
  }
660
673
  .sidebar-menu li > a > .pull-right {
661
674
  position: absolute;
662
- top: 50%;
663
675
  right: 10px;
676
+ top: 50%;
664
677
  margin-top: -7px;
665
678
  }
666
679
  /*
@@ -708,40 +721,38 @@ a:focus {
708
721
  margin-right: 230px;
709
722
  }
710
723
  }
711
- .control-sidebar-tabs > li:first-of-type > a {
712
- margin-left: 1px;
713
- }
714
- .control-sidebar-tabs > li:first-of-type > a,
715
- .control-sidebar-tabs > li:first-of-type > a:hover {
716
- border-left-width: 0!important;
724
+ .nav-tabs.control-sidebar-tabs > li:first-of-type > a,
725
+ .nav-tabs.control-sidebar-tabs > li:first-of-type > a:hover,
726
+ .nav-tabs.control-sidebar-tabs > li:first-of-type > a:focus {
727
+ border-left-width: 0;
717
728
  }
718
- .control-sidebar-tabs > li > a {
719
- border-radius: 0 !important;
729
+ .nav-tabs.control-sidebar-tabs > li > a {
730
+ border-radius: 0;
720
731
  }
721
- .control-sidebar-tabs > li > a,
722
- .control-sidebar-tabs > li > a:hover {
732
+ .nav-tabs.control-sidebar-tabs > li > a,
733
+ .nav-tabs.control-sidebar-tabs > li > a:hover {
723
734
  border-top: none;
724
735
  border-right: none;
725
- border-left: 1px solid transparent!important;
726
- border-bottom: 1px solid transparent!important;
736
+ border-left: 1px solid transparent;
737
+ border-bottom: 1px solid transparent;
727
738
  }
728
- .control-sidebar-tabs > li > a .icon {
739
+ .nav-tabs.control-sidebar-tabs > li > a .icon {
729
740
  font-size: 16px;
730
741
  }
731
- .control-sidebar-tabs > li.active > a,
732
- .control-sidebar-tabs > li.active > a:hover,
733
- .control-sidebar-tabs > li.active > a:focus,
734
- .control-sidebar-tabs > li.active > a:active {
735
- border-top: none!important;
736
- border-right: none!important;
737
- border-bottom: none!important;
742
+ .nav-tabs.control-sidebar-tabs > li.active > a,
743
+ .nav-tabs.control-sidebar-tabs > li.active > a:hover,
744
+ .nav-tabs.control-sidebar-tabs > li.active > a:focus,
745
+ .nav-tabs.control-sidebar-tabs > li.active > a:active {
746
+ border-top: none;
747
+ border-right: none;
748
+ border-bottom: none;
738
749
  }
739
750
  @media (max-width: 768px) {
740
- .control-sidebar-tabs {
751
+ .nav-tabs.control-sidebar-tabs {
741
752
  display: table;
742
753
  }
743
- .control-sidebar-tabs > li {
744
- display: table-cell !important;
754
+ .nav-tabs.control-sidebar-tabs > li {
755
+ display: table-cell;
745
756
  }
746
757
  }
747
758
  .control-sidebar-heading {
@@ -804,27 +815,31 @@ a:focus {
804
815
  .control-sidebar-dark + .control-sidebar-bg {
805
816
  background: #222d32;
806
817
  }
807
- .control-sidebar-dark .control-sidebar-tabs {
818
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs {
808
819
  border-bottom: #1c2529;
809
820
  }
810
- .control-sidebar-dark .control-sidebar-tabs > li > a {
821
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a {
811
822
  background: #181f23;
812
823
  color: #b8c7ce;
813
824
  }
814
- .control-sidebar-dark .control-sidebar-tabs > li > a,
815
- .control-sidebar-dark .control-sidebar-tabs > li > a:hover {
816
- border-left-color: #141a1d !important;
817
- border-bottom-color: #141a1d !important;
825
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a,
826
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
827
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus {
828
+ border-left-color: #141a1d;
829
+ border-bottom-color: #141a1d;
818
830
  }
819
- .control-sidebar-dark .control-sidebar-tabs > li > a:hover,
820
- .control-sidebar-dark .control-sidebar-tabs > li > a:focus,
821
- .control-sidebar-dark .control-sidebar-tabs > li > a:active {
831
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
832
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus,
833
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:active {
822
834
  background: #1c2529;
823
835
  }
824
- .control-sidebar-dark .control-sidebar-tabs > li.active > a,
825
- .control-sidebar-dark .control-sidebar-tabs > li.active > a:hover,
826
- .control-sidebar-dark .control-sidebar-tabs > li.active > a:focus,
827
- .control-sidebar-dark .control-sidebar-tabs > li.active > a:active {
836
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover {
837
+ color: #fff;
838
+ }
839
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a,
840
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:hover,
841
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:focus,
842
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:active {
828
843
  background: #222d32;
829
844
  color: #fff;
830
845
  }
@@ -846,27 +861,28 @@ a:focus {
846
861
  background: #f9fafc;
847
862
  border-left: 1px solid #d2d6de;
848
863
  }
849
- .control-sidebar-light .control-sidebar-tabs {
864
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs {
850
865
  border-bottom: #d2d6de;
851
866
  }
852
- .control-sidebar-light .control-sidebar-tabs > li > a {
867
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a {
853
868
  background: #e8ecf4;
854
869
  color: #444444;
855
870
  }
856
- .control-sidebar-light .control-sidebar-tabs > li > a,
857
- .control-sidebar-light .control-sidebar-tabs > li > a:hover {
858
- border-left-color: #d2d6de !important;
859
- border-bottom-color: #d2d6de !important;
871
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a,
872
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
873
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus {
874
+ border-left-color: #d2d6de;
875
+ border-bottom-color: #d2d6de;
860
876
  }
861
- .control-sidebar-light .control-sidebar-tabs > li > a:hover,
862
- .control-sidebar-light .control-sidebar-tabs > li > a:focus,
863
- .control-sidebar-light .control-sidebar-tabs > li > a:active {
877
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
878
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus,
879
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:active {
864
880
  background: #eff1f7;
865
881
  }
866
- .control-sidebar-light .control-sidebar-tabs > li.active > a,
867
- .control-sidebar-light .control-sidebar-tabs > li.active > a:hover,
868
- .control-sidebar-light .control-sidebar-tabs > li.active > a:focus,
869
- .control-sidebar-light .control-sidebar-tabs > li.active > a:active {
882
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a,
883
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:hover,
884
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:focus,
885
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:active {
870
886
  background: #f9fafc;
871
887
  color: #111;
872
888
  }
@@ -907,21 +923,12 @@ a:focus {
907
923
  .dropdown-menu > .divider {
908
924
  background-color: #eee;
909
925
  }
910
- .navbar-nav .dropdown-menu {
911
- -webkit-box-shadow: none !important;
912
- box-shadow: none !important;
913
- }
914
- .navbar-nav > .notifications-menu,
915
- .navbar-nav > .messages-menu,
916
- .navbar-nav > .tasks-menu {
917
- position: relative;
918
- }
919
926
  .navbar-nav > .notifications-menu > .dropdown-menu,
920
927
  .navbar-nav > .messages-menu > .dropdown-menu,
921
928
  .navbar-nav > .tasks-menu > .dropdown-menu {
922
929
  width: 280px;
923
- padding: 0 0 0 0!important;
924
- margin: 0!important;
930
+ padding: 0 0 0 0;
931
+ margin: 0;
925
932
  top: 100%;
926
933
  }
927
934
  .navbar-nav > .notifications-menu > .dropdown-menu > li,
@@ -945,23 +952,23 @@ a:focus {
945
952
  .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
946
953
  .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
947
954
  .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
948
- border-top-left-radius: 0px;
949
- border-top-right-radius: 0px;
955
+ border-top-left-radius: 0;
956
+ border-top-right-radius: 0;
950
957
  border-bottom-right-radius: 4px;
951
958
  border-bottom-left-radius: 4px;
952
959
  font-size: 12px;
953
960
  background-color: #fff;
954
961
  padding: 7px 10px;
955
962
  border-bottom: 1px solid #eeeeee;
956
- color: #444!important;
963
+ color: #444 !important;
957
964
  text-align: center;
958
965
  }
959
966
  @media (max-width: 991px) {
960
967
  .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
961
968
  .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
962
969
  .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
963
- background: #fff!important;
964
- color: #444!important;
970
+ background: #fff !important;
971
+ color: #444 !important;
965
972
  }
966
973
  }
967
974
  .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
@@ -997,7 +1004,6 @@ a:focus {
997
1004
  color: #444444;
998
1005
  overflow: hidden;
999
1006
  text-overflow: ellipsis;
1000
- white-space: nowrap;
1001
1007
  padding: 10px;
1002
1008
  }
1003
1009
  .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
@@ -1006,7 +1012,7 @@ a:focus {
1006
1012
  width: 20px;
1007
1013
  }
1008
1014
  .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a {
1009
- margin: 0px;
1015
+ margin: 0;
1010
1016
  padding: 10px 10px;
1011
1017
  }
1012
1018
  .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img {
@@ -1025,8 +1031,8 @@ a:focus {
1025
1031
  color: #999999;
1026
1032
  font-size: 10px;
1027
1033
  position: absolute;
1028
- top: 0px;
1029
- right: 0px;
1034
+ top: 0;
1035
+ right: 0;
1030
1036
  }
1031
1037
  .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
1032
1038
  margin: 0 0 0 45px;
@@ -1127,6 +1133,11 @@ a:focus {
1127
1133
  .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
1128
1134
  color: #666666;
1129
1135
  }
1136
+ @media (max-width: 991px) {
1137
+ .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover {
1138
+ background-color: #f9f9f9;
1139
+ }
1140
+ }
1130
1141
  .navbar-nav > .user-menu .user-image {
1131
1142
  float: left;
1132
1143
  width: 25px;
@@ -1222,23 +1233,19 @@ a:focus {
1222
1233
  * ---------------
1223
1234
  */
1224
1235
  .form-control {
1225
- border-radius: 0px !important;
1236
+ border-radius: 0;
1226
1237
  box-shadow: none;
1227
1238
  border-color: #d2d6de;
1228
1239
  }
1229
1240
  .form-control:focus {
1230
- border-color: #3c8dbc !important;
1241
+ border-color: #3c8dbc;
1231
1242
  box-shadow: none;
1232
1243
  }
1233
- .form-control::-moz-placeholder {
1234
- color: #bbb;
1235
- opacity: 1;
1236
- }
1237
- .form-control:-ms-input-placeholder {
1238
- color: #bbb;
1239
- }
1244
+ .form-control::-moz-placeholder,
1245
+ .form-control:-ms-input-placeholder,
1240
1246
  .form-control::-webkit-input-placeholder {
1241
1247
  color: #bbb;
1248
+ opacity: 1;
1242
1249
  }
1243
1250
  .form-control:not(select) {
1244
1251
  -webkit-appearance: none;
@@ -1249,26 +1256,26 @@ a:focus {
1249
1256
  color: #00a65a;
1250
1257
  }
1251
1258
  .form-group.has-success .form-control {
1252
- border-color: #00a65a !important;
1259
+ border-color: #00a65a;
1253
1260
  box-shadow: none;
1254
1261
  }
1255
1262
  .form-group.has-warning label {
1256
1263
  color: #f39c12;
1257
1264
  }
1258
1265
  .form-group.has-warning .form-control {
1259
- border-color: #f39c12 !important;
1266
+ border-color: #f39c12;
1260
1267
  box-shadow: none;
1261
1268
  }
1262
1269
  .form-group.has-error label {
1263
1270
  color: #dd4b39;
1264
1271
  }
1265
1272
  .form-group.has-error .form-control {
1266
- border-color: #dd4b39 !important;
1273
+ border-color: #dd4b39;
1267
1274
  box-shadow: none;
1268
1275
  }
1269
1276
  /* Input group */
1270
1277
  .input-group .input-group-addon {
1271
- border-radius: 0px;
1278
+ border-radius: 0;
1272
1279
  border-color: #d2d6de;
1273
1280
  background-color: #fff;
1274
1281
  }
@@ -1280,6 +1287,20 @@ a:focus {
1280
1287
  .icheck > label {
1281
1288
  padding-left: 0;
1282
1289
  }
1290
+ /* support Font Awesome icons in form-control */
1291
+ .form-control-feedback.fa {
1292
+ line-height: 34px;
1293
+ }
1294
+ .input-lg + .form-control-feedback.fa,
1295
+ .input-group-lg + .form-control-feedback.fa,
1296
+ .form-group-lg .form-control + .form-control-feedback.fa {
1297
+ line-height: 46px;
1298
+ }
1299
+ .input-sm + .form-control-feedback.fa,
1300
+ .input-group-sm + .form-control-feedback.fa,
1301
+ .form-group-sm .form-control + .form-control-feedback.fa {
1302
+ line-height: 30px;
1303
+ }
1283
1304
  /*
1284
1305
  * Component: Progress Bar
1285
1306
  * -----------------------
@@ -1335,7 +1356,7 @@ a:focus {
1335
1356
  margin-right: 10px;
1336
1357
  }
1337
1358
  .progress.vertical > .progress-bar {
1338
- width: 100%!important;
1359
+ width: 100%;
1339
1360
  position: absolute;
1340
1361
  bottom: 0;
1341
1362
  }
@@ -1542,14 +1563,14 @@ a:focus {
1542
1563
  border-left: 1px solid #f4f4f4;
1543
1564
  }
1544
1565
  .box.box-solid {
1545
- border-top: 0px;
1566
+ border-top: 0;
1546
1567
  }
1547
1568
  .box.box-solid > .box-header .btn.btn-default {
1548
1569
  background: transparent;
1549
1570
  }
1550
1571
  .box.box-solid > .box-header .btn:hover,
1551
1572
  .box.box-solid > .box-header a:hover {
1552
- background: rgba(0, 0, 0, 0.1) !important;
1573
+ background: rgba(0, 0, 0, 0.1);
1553
1574
  }
1554
1575
  .box.box-solid.box-default {
1555
1576
  border: 1px solid #d2d6de;
@@ -1726,15 +1747,14 @@ a:focus {
1726
1747
  padding: 5px;
1727
1748
  font-size: 12px;
1728
1749
  background: transparent;
1729
- box-shadow: none!important;
1730
1750
  color: #97a0b3;
1731
1751
  }
1732
1752
  .open .btn-box-tool,
1733
1753
  .btn-box-tool:hover {
1734
1754
  color: #606c84;
1735
1755
  }
1736
- .btn-box-tool:active {
1737
- outline: none!important;
1756
+ .btn-box-tool.btn:active {
1757
+ box-shadow: none;
1738
1758
  }
1739
1759
  .box-body {
1740
1760
  border-top-left-radius: 0;
@@ -1789,10 +1809,47 @@ a:focus {
1789
1809
  margin-right: 10px;
1790
1810
  }
1791
1811
  }
1812
+ .box-comments {
1813
+ background: #f7f7f7;
1814
+ }
1815
+ .box-comments .box-comment {
1816
+ padding: 8px 0;
1817
+ border-bottom: 1px solid #eee;
1818
+ }
1819
+ .box-comments .box-comment:before,
1820
+ .box-comments .box-comment:after {
1821
+ content: " ";
1822
+ display: table;
1823
+ }
1824
+ .box-comments .box-comment:after {
1825
+ clear: both;
1826
+ }
1827
+ .box-comments .box-comment:last-of-type {
1828
+ border-bottom: 0;
1829
+ }
1830
+ .box-comments .box-comment:first-of-type {
1831
+ padding-top: 0;
1832
+ }
1833
+ .box-comments .box-comment img {
1834
+ float: left;
1835
+ }
1836
+ .box-comments .comment-text {
1837
+ margin-left: 40px;
1838
+ color: #555;
1839
+ }
1840
+ .box-comments .username {
1841
+ color: #444;
1842
+ display: block;
1843
+ font-weight: 600;
1844
+ }
1845
+ .box-comments .text-muted {
1846
+ font-weight: 400;
1847
+ font-size: 12px;
1848
+ }
1792
1849
  /* Widget: TODO LIST */
1793
1850
  .todo-list {
1794
1851
  margin: 0;
1795
- padding: 0px 0px;
1852
+ padding: 0;
1796
1853
  list-style: none;
1797
1854
  overflow: auto;
1798
1855
  }
@@ -1807,21 +1864,6 @@ a:focus {
1807
1864
  .todo-list > li:last-of-type {
1808
1865
  margin-bottom: 0;
1809
1866
  }
1810
- .todo-list > li.danger {
1811
- border-left-color: #dd4b39;
1812
- }
1813
- .todo-list > li.warning {
1814
- border-left-color: #f39c12;
1815
- }
1816
- .todo-list > li.info {
1817
- border-left-color: #00c0ef;
1818
- }
1819
- .todo-list > li.success {
1820
- border-left-color: #00a65a;
1821
- }
1822
- .todo-list > li.primary {
1823
- border-left-color: #3c8dbc;
1824
- }
1825
1867
  .todo-list > li > input[type='checkbox'] {
1826
1868
  margin: 0 10px 0 5px;
1827
1869
  }
@@ -1858,6 +1900,21 @@ a:focus {
1858
1900
  .todo-list > li.done .label {
1859
1901
  background: #d2d6de !important;
1860
1902
  }
1903
+ .todo-list .danger {
1904
+ border-left-color: #dd4b39;
1905
+ }
1906
+ .todo-list .warning {
1907
+ border-left-color: #f39c12;
1908
+ }
1909
+ .todo-list .info {
1910
+ border-left-color: #00c0ef;
1911
+ }
1912
+ .todo-list .success {
1913
+ border-left-color: #00a65a;
1914
+ }
1915
+ .todo-list .primary {
1916
+ border-left-color: #3c8dbc;
1917
+ }
1861
1918
  .todo-list .handle {
1862
1919
  display: inline-block;
1863
1920
  cursor: move;
@@ -1882,12 +1939,12 @@ a:focus {
1882
1939
  width: 40px;
1883
1940
  height: 40px;
1884
1941
  border: 2px solid transparent;
1885
- border-radius: 50% !important;
1942
+ border-radius: 50%;
1886
1943
  }
1887
- .chat .item > img.online {
1944
+ .chat .item > .online {
1888
1945
  border: 2px solid #00a65a;
1889
1946
  }
1890
- .chat .item > img.offline {
1947
+ .chat .item > .offline {
1891
1948
  border: 2px solid #dd4b39;
1892
1949
  }
1893
1950
  .chat .item > .message {
@@ -2015,7 +2072,7 @@ a:focus {
2015
2072
  .timeline:before {
2016
2073
  content: '';
2017
2074
  position: absolute;
2018
- top: 0px;
2075
+ top: 0;
2019
2076
  bottom: 0;
2020
2077
  width: 4px;
2021
2078
  background: #ddd;
@@ -2040,7 +2097,7 @@ a:focus {
2040
2097
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
2041
2098
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
2042
2099
  border-radius: 3px;
2043
- margin-top: 0px;
2100
+ margin-top: 0;
2044
2101
  background: #fff;
2045
2102
  color: #444;
2046
2103
  margin-left: 60px;
@@ -2069,13 +2126,6 @@ a:focus {
2069
2126
  .timeline > li > .timeline-item > .timeline-footer {
2070
2127
  padding: 10px;
2071
2128
  }
2072
- .timeline > li.time-label > span {
2073
- font-weight: 600;
2074
- padding: 5px;
2075
- display: inline-block;
2076
- background-color: #fff;
2077
- border-radius: 4px;
2078
- }
2079
2129
  .timeline > li > .fa,
2080
2130
  .timeline > li > .glyphicon,
2081
2131
  .timeline > li > .ion {
@@ -2091,6 +2141,22 @@ a:focus {
2091
2141
  left: 18px;
2092
2142
  top: 0;
2093
2143
  }
2144
+ .timeline > .time-label > span {
2145
+ font-weight: 600;
2146
+ padding: 5px;
2147
+ display: inline-block;
2148
+ background-color: #fff;
2149
+ border-radius: 4px;
2150
+ }
2151
+ .timeline-inverse > li > .timeline-item {
2152
+ background: #f0f0f0;
2153
+ border: 1px solid #ddd;
2154
+ -webkit-box-shadow: none;
2155
+ box-shadow: none;
2156
+ }
2157
+ .timeline-inverse > li > .timeline-item > .timeline-header {
2158
+ border-bottom-color: #ddd;
2159
+ }
2094
2160
  /*
2095
2161
  * Component: Button
2096
2162
  * -----------------
@@ -2146,7 +2212,7 @@ a:focus {
2146
2212
  .btn-default:hover,
2147
2213
  .btn-default:active,
2148
2214
  .btn-default.hover {
2149
- background-color: #e7e7e7 !important;
2215
+ background-color: #e7e7e7;
2150
2216
  }
2151
2217
  .btn-primary {
2152
2218
  background-color: #3c8dbc;
@@ -2366,6 +2432,8 @@ a:focus {
2366
2432
  }
2367
2433
  .nav-stacked > li.active > a,
2368
2434
  .nav-stacked > li.active > a:hover {
2435
+ background: transparent;
2436
+ color: #444;
2369
2437
  border-top: 0;
2370
2438
  border-left-color: #3c8dbc;
2371
2439
  }
@@ -2396,7 +2464,10 @@ a:focus {
2396
2464
  }
2397
2465
  .nav-tabs-custom > .nav-tabs > li > a {
2398
2466
  color: #444;
2399
- border-radius: 0 !important;
2467
+ border-radius: 0;
2468
+ }
2469
+ .nav-tabs-custom > .nav-tabs > li > a.text-muted {
2470
+ color: #999;
2400
2471
  }
2401
2472
  .nav-tabs-custom > .nav-tabs > li > a,
2402
2473
  .nav-tabs-custom > .nav-tabs > li > a:hover {
@@ -2431,7 +2502,7 @@ a:focus {
2431
2502
  border-left-color: transparent;
2432
2503
  }
2433
2504
  .nav-tabs-custom > .nav-tabs.pull-right {
2434
- float: none!important;
2505
+ float: none !important;
2435
2506
  }
2436
2507
  .nav-tabs-custom > .nav-tabs.pull-right > li {
2437
2508
  float: right;
@@ -2468,10 +2539,30 @@ a:focus {
2468
2539
  background: transparent;
2469
2540
  color: #999;
2470
2541
  }
2542
+ .nav-tabs-custom.tab-primary > .nav-tabs > li.active {
2543
+ border-top-color: #3c8dbc;
2544
+ }
2545
+ .nav-tabs-custom.tab-info > .nav-tabs > li.active {
2546
+ border-top-color: #00c0ef;
2547
+ }
2548
+ .nav-tabs-custom.tab-danger > .nav-tabs > li.active {
2549
+ border-top-color: #dd4b39;
2550
+ }
2551
+ .nav-tabs-custom.tab-warning > .nav-tabs > li.active {
2552
+ border-top-color: #f39c12;
2553
+ }
2554
+ .nav-tabs-custom.tab-success > .nav-tabs > li.active {
2555
+ border-top-color: #00a65a;
2556
+ }
2557
+ .nav-tabs-custom.tab-default > .nav-tabs > li.active {
2558
+ border-top-color: #d2d6de;
2559
+ }
2471
2560
  /* PAGINATION */
2472
2561
  .pagination > li > a {
2473
2562
  background: #fafafa;
2474
2563
  color: #666;
2564
+ }
2565
+ .pagination.pagination-flat > li > a {
2475
2566
  border-radius: 0 !important;
2476
2567
  }
2477
2568
  /*
@@ -2838,8 +2929,9 @@ table.text-center th {
2838
2929
  * Component: Carousel
2839
2930
  * -------------------
2840
2931
  */
2841
- .carousel-control {
2842
- background-image: none!important;
2932
+ .carousel-control.left,
2933
+ .carousel-control.right {
2934
+ background-image: none;
2843
2935
  }
2844
2936
  .carousel-control > .fa {
2845
2937
  font-size: 40px;
@@ -2858,14 +2950,14 @@ table.text-center th {
2858
2950
  }
2859
2951
  .modal-content {
2860
2952
  border-radius: 0;
2861
- -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
2862
- box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
2953
+ -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
2954
+ box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
2863
2955
  border: 0;
2864
2956
  }
2865
2957
  @media (min-width: 768px) {
2866
2958
  .modal-content {
2867
- -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
2868
- box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
2959
+ -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
2960
+ box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
2869
2961
  }
2870
2962
  }
2871
2963
  .modal-header {
@@ -2894,6 +2986,67 @@ table.text-center th {
2894
2986
  .modal-danger .modal-footer {
2895
2987
  border-color: #c23321;
2896
2988
  }
2989
+ /*
2990
+ * Component: Social Widgets
2991
+ * -------------------------
2992
+ */
2993
+ .box-widget {
2994
+ border: none;
2995
+ position: relative;
2996
+ }
2997
+ .widget-user .widget-user-header {
2998
+ padding: 20px;
2999
+ height: 120px;
3000
+ border-top-right-radius: 3px;
3001
+ border-top-left-radius: 3px;
3002
+ }
3003
+ .widget-user .widget-user-username {
3004
+ margin-top: 0;
3005
+ margin-bottom: 5px;
3006
+ font-size: 25px;
3007
+ font-weight: 300;
3008
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
3009
+ }
3010
+ .widget-user .widget-user-desc {
3011
+ margin-top: 0;
3012
+ }
3013
+ .widget-user .widget-user-image {
3014
+ position: absolute;
3015
+ top: 65px;
3016
+ left: 50%;
3017
+ margin-left: -45px;
3018
+ }
3019
+ .widget-user .widget-user-image > img {
3020
+ width: 90px;
3021
+ height: auto;
3022
+ border: 3px solid #fff;
3023
+ }
3024
+ .widget-user .box-footer {
3025
+ padding-top: 30px;
3026
+ }
3027
+ .widget-user-2 .widget-user-header {
3028
+ padding: 20px;
3029
+ border-top-right-radius: 3px;
3030
+ border-top-left-radius: 3px;
3031
+ }
3032
+ .widget-user-2 .widget-user-username {
3033
+ margin-top: 5px;
3034
+ margin-bottom: 5px;
3035
+ font-size: 25px;
3036
+ font-weight: 300;
3037
+ }
3038
+ .widget-user-2 .widget-user-desc {
3039
+ margin-top: 0;
3040
+ }
3041
+ .widget-user-2 .widget-user-username,
3042
+ .widget-user-2 .widget-user-desc {
3043
+ margin-left: 75px;
3044
+ }
3045
+ .widget-user-2 .widget-user-image > img {
3046
+ width: 65px;
3047
+ height: auto;
3048
+ float: left;
3049
+ }
2897
3050
  /*
2898
3051
  * Page: Mailbox
2899
3052
  * -------------
@@ -3019,7 +3172,7 @@ table.text-center th {
3019
3172
  margin-left: 70px;
3020
3173
  }
3021
3174
  .lockscreen-credentials .form-control {
3022
- border: 0 !important;
3175
+ border: 0;
3023
3176
  }
3024
3177
  .lockscreen-credentials .btn {
3025
3178
  background-color: #fff;
@@ -3064,7 +3217,6 @@ table.text-center th {
3064
3217
  .register-box-body {
3065
3218
  background: #fff;
3066
3219
  padding: 20px;
3067
- color: #444;
3068
3220
  border-top: 0;
3069
3221
  color: #666;
3070
3222
  }
@@ -3138,55 +3290,87 @@ table.text-center th {
3138
3290
  margin-top: 0;
3139
3291
  }
3140
3292
  /*
3141
- * Plugin: Social Buttons
3142
- * ----------------------
3293
+ * Page: Profile
3294
+ * -------------
3295
+ */
3296
+ .profile-user-img {
3297
+ margin: 0 auto;
3298
+ width: 100px;
3299
+ padding: 3px;
3300
+ border: 3px solid #d2d6de;
3301
+ }
3302
+ .profile-username {
3303
+ font-size: 21px;
3304
+ margin-top: 5px;
3305
+ }
3306
+ .post {
3307
+ border-bottom: 1px solid #d2d6de;
3308
+ margin-bottom: 15px;
3309
+ padding-bottom: 15px;
3310
+ color: #666;
3311
+ }
3312
+ .post:last-of-type {
3313
+ border-bottom: 0;
3314
+ margin-bottom: 0;
3315
+ padding-bottom: 0;
3316
+ }
3317
+ .post .user-block {
3318
+ margin-bottom: 15px;
3319
+ }
3320
+ /*
3321
+ * Social Buttons for Bootstrap
3322
+ *
3323
+ * Copyright 2013-2015 Panayiotis Lipiridis
3324
+ * Licensed under the MIT License
3325
+ *
3326
+ * https://github.com/lipis/bootstrap-social
3143
3327
  */
3144
3328
  .btn-social {
3145
3329
  position: relative;
3146
- padding-left: 44px !important;
3330
+ padding-left: 44px;
3147
3331
  text-align: left;
3148
3332
  white-space: nowrap;
3149
3333
  overflow: hidden;
3150
3334
  text-overflow: ellipsis;
3151
3335
  }
3152
- .btn-social :first-child {
3336
+ .btn-social > :first-child {
3153
3337
  position: absolute;
3154
3338
  left: 0;
3155
3339
  top: 0;
3156
3340
  bottom: 0;
3157
- width: 32px !important;
3158
- line-height: 34px !important;
3159
- font-size: 1.6em!important;
3341
+ width: 32px;
3342
+ line-height: 34px;
3343
+ font-size: 1.6em;
3160
3344
  text-align: center;
3161
3345
  border-right: 1px solid rgba(0, 0, 0, 0.2);
3162
3346
  }
3163
3347
  .btn-social.btn-lg {
3164
- padding-left: 61px !important;
3348
+ padding-left: 61px;
3165
3349
  }
3166
- .btn-social.btn-lg :first-child {
3350
+ .btn-social.btn-lg > :first-child {
3167
3351
  line-height: 45px;
3168
3352
  width: 45px;
3169
3353
  font-size: 1.8em;
3170
3354
  }
3171
3355
  .btn-social.btn-sm {
3172
- padding-left: 38px !important;
3356
+ padding-left: 38px;
3173
3357
  }
3174
- .btn-social.btn-sm :first-child {
3358
+ .btn-social.btn-sm > :first-child {
3175
3359
  line-height: 28px;
3176
3360
  width: 28px;
3177
3361
  font-size: 1.4em;
3178
3362
  }
3179
3363
  .btn-social.btn-xs {
3180
- padding-left: 30px !important;
3364
+ padding-left: 30px;
3181
3365
  }
3182
- .btn-social.btn-xs :first-child {
3366
+ .btn-social.btn-xs > :first-child {
3183
3367
  line-height: 20px;
3184
3368
  width: 20px;
3185
3369
  font-size: 1.2em;
3186
3370
  }
3187
3371
  .btn-social-icon {
3188
3372
  position: relative;
3189
- padding-left: 44px !important;
3373
+ padding-left: 44px;
3190
3374
  text-align: left;
3191
3375
  white-space: nowrap;
3192
3376
  overflow: hidden;
@@ -3195,45 +3379,45 @@ table.text-center th {
3195
3379
  width: 34px;
3196
3380
  padding: 0;
3197
3381
  }
3198
- .btn-social-icon :first-child {
3382
+ .btn-social-icon > :first-child {
3199
3383
  position: absolute;
3200
3384
  left: 0;
3201
3385
  top: 0;
3202
3386
  bottom: 0;
3203
- width: 32px !important;
3204
- line-height: 34px !important;
3205
- font-size: 1.6em!important;
3387
+ width: 32px;
3388
+ line-height: 34px;
3389
+ font-size: 1.6em;
3206
3390
  text-align: center;
3207
3391
  border-right: 1px solid rgba(0, 0, 0, 0.2);
3208
3392
  }
3209
3393
  .btn-social-icon.btn-lg {
3210
- padding-left: 61px !important;
3394
+ padding-left: 61px;
3211
3395
  }
3212
- .btn-social-icon.btn-lg :first-child {
3396
+ .btn-social-icon.btn-lg > :first-child {
3213
3397
  line-height: 45px;
3214
3398
  width: 45px;
3215
3399
  font-size: 1.8em;
3216
3400
  }
3217
3401
  .btn-social-icon.btn-sm {
3218
- padding-left: 38px !important;
3402
+ padding-left: 38px;
3219
3403
  }
3220
- .btn-social-icon.btn-sm :first-child {
3404
+ .btn-social-icon.btn-sm > :first-child {
3221
3405
  line-height: 28px;
3222
3406
  width: 28px;
3223
3407
  font-size: 1.4em;
3224
3408
  }
3225
3409
  .btn-social-icon.btn-xs {
3226
- padding-left: 30px !important;
3410
+ padding-left: 30px;
3227
3411
  }
3228
- .btn-social-icon.btn-xs :first-child {
3412
+ .btn-social-icon.btn-xs > :first-child {
3229
3413
  line-height: 20px;
3230
3414
  width: 20px;
3231
3415
  font-size: 1.2em;
3232
3416
  }
3233
- .btn-social-icon :first-child {
3417
+ .btn-social-icon > :first-child {
3234
3418
  border: none;
3235
3419
  text-align: center;
3236
- width: 100%!important;
3420
+ width: 100%;
3237
3421
  }
3238
3422
  .btn-social-icon.btn-lg {
3239
3423
  height: 45px;
@@ -3253,14 +3437,54 @@ table.text-center th {
3253
3437
  padding-left: 0;
3254
3438
  padding-right: 0;
3255
3439
  }
3440
+ .btn-adn {
3441
+ color: #ffffff;
3442
+ background-color: #d87a68;
3443
+ border-color: rgba(0, 0, 0, 0.2);
3444
+ }
3445
+ .btn-adn:focus,
3446
+ .btn-adn.focus {
3447
+ color: #ffffff;
3448
+ background-color: #ce563f;
3449
+ border-color: rgba(0, 0, 0, 0.2);
3450
+ }
3451
+ .btn-adn:hover {
3452
+ color: #ffffff;
3453
+ background-color: #ce563f;
3454
+ border-color: rgba(0, 0, 0, 0.2);
3455
+ }
3456
+ .btn-adn:active,
3457
+ .btn-adn.active,
3458
+ .open > .dropdown-toggle.btn-adn {
3459
+ color: #ffffff;
3460
+ background-color: #ce563f;
3461
+ border-color: rgba(0, 0, 0, 0.2);
3462
+ }
3463
+ .btn-adn:active,
3464
+ .btn-adn.active,
3465
+ .open > .dropdown-toggle.btn-adn {
3466
+ background-image: none;
3467
+ }
3468
+ .btn-adn .badge {
3469
+ color: #d87a68;
3470
+ background-color: #ffffff;
3471
+ }
3256
3472
  .btn-bitbucket {
3257
3473
  color: #ffffff;
3258
3474
  background-color: #205081;
3259
3475
  border-color: rgba(0, 0, 0, 0.2);
3260
3476
  }
3261
- .btn-bitbucket:hover,
3262
3477
  .btn-bitbucket:focus,
3263
- .btn-bitbucket.focus,
3478
+ .btn-bitbucket.focus {
3479
+ color: #ffffff;
3480
+ background-color: #163758;
3481
+ border-color: rgba(0, 0, 0, 0.2);
3482
+ }
3483
+ .btn-bitbucket:hover {
3484
+ color: #ffffff;
3485
+ background-color: #163758;
3486
+ border-color: rgba(0, 0, 0, 0.2);
3487
+ }
3264
3488
  .btn-bitbucket:active,
3265
3489
  .btn-bitbucket.active,
3266
3490
  .open > .dropdown-toggle.btn-bitbucket {
@@ -3282,9 +3506,17 @@ table.text-center th {
3282
3506
  background-color: #1087dd;
3283
3507
  border-color: rgba(0, 0, 0, 0.2);
3284
3508
  }
3285
- .btn-dropbox:hover,
3286
3509
  .btn-dropbox:focus,
3287
- .btn-dropbox.focus,
3510
+ .btn-dropbox.focus {
3511
+ color: #ffffff;
3512
+ background-color: #0d6aad;
3513
+ border-color: rgba(0, 0, 0, 0.2);
3514
+ }
3515
+ .btn-dropbox:hover {
3516
+ color: #ffffff;
3517
+ background-color: #0d6aad;
3518
+ border-color: rgba(0, 0, 0, 0.2);
3519
+ }
3288
3520
  .btn-dropbox:active,
3289
3521
  .btn-dropbox.active,
3290
3522
  .open > .dropdown-toggle.btn-dropbox {
@@ -3306,9 +3538,17 @@ table.text-center th {
3306
3538
  background-color: #3b5998;
3307
3539
  border-color: rgba(0, 0, 0, 0.2);
3308
3540
  }
3309
- .btn-facebook:hover,
3310
3541
  .btn-facebook:focus,
3311
- .btn-facebook.focus,
3542
+ .btn-facebook.focus {
3543
+ color: #ffffff;
3544
+ background-color: #2d4373;
3545
+ border-color: rgba(0, 0, 0, 0.2);
3546
+ }
3547
+ .btn-facebook:hover {
3548
+ color: #ffffff;
3549
+ background-color: #2d4373;
3550
+ border-color: rgba(0, 0, 0, 0.2);
3551
+ }
3312
3552
  .btn-facebook:active,
3313
3553
  .btn-facebook.active,
3314
3554
  .open > .dropdown-toggle.btn-facebook {
@@ -3330,9 +3570,17 @@ table.text-center th {
3330
3570
  background-color: #ff0084;
3331
3571
  border-color: rgba(0, 0, 0, 0.2);
3332
3572
  }
3333
- .btn-flickr:hover,
3334
3573
  .btn-flickr:focus,
3335
- .btn-flickr.focus,
3574
+ .btn-flickr.focus {
3575
+ color: #ffffff;
3576
+ background-color: #cc006a;
3577
+ border-color: rgba(0, 0, 0, 0.2);
3578
+ }
3579
+ .btn-flickr:hover {
3580
+ color: #ffffff;
3581
+ background-color: #cc006a;
3582
+ border-color: rgba(0, 0, 0, 0.2);
3583
+ }
3336
3584
  .btn-flickr:active,
3337
3585
  .btn-flickr.active,
3338
3586
  .open > .dropdown-toggle.btn-flickr {
@@ -3351,26 +3599,34 @@ table.text-center th {
3351
3599
  }
3352
3600
  .btn-foursquare {
3353
3601
  color: #ffffff;
3354
- background-color: #0072b1;
3602
+ background-color: #f94877;
3355
3603
  border-color: rgba(0, 0, 0, 0.2);
3356
3604
  }
3357
- .btn-foursquare:hover,
3358
3605
  .btn-foursquare:focus,
3359
- .btn-foursquare.focus,
3360
- .btn-foursquare:active,
3361
- .btn-foursquare.active,
3362
- .open > .dropdown-toggle.btn-foursquare {
3606
+ .btn-foursquare.focus {
3363
3607
  color: #ffffff;
3364
- background-color: #00517e;
3608
+ background-color: #f71752;
3365
3609
  border-color: rgba(0, 0, 0, 0.2);
3366
3610
  }
3367
- .btn-foursquare:active,
3611
+ .btn-foursquare:hover {
3612
+ color: #ffffff;
3613
+ background-color: #f71752;
3614
+ border-color: rgba(0, 0, 0, 0.2);
3615
+ }
3616
+ .btn-foursquare:active,
3617
+ .btn-foursquare.active,
3618
+ .open > .dropdown-toggle.btn-foursquare {
3619
+ color: #ffffff;
3620
+ background-color: #f71752;
3621
+ border-color: rgba(0, 0, 0, 0.2);
3622
+ }
3623
+ .btn-foursquare:active,
3368
3624
  .btn-foursquare.active,
3369
3625
  .open > .dropdown-toggle.btn-foursquare {
3370
3626
  background-image: none;
3371
3627
  }
3372
3628
  .btn-foursquare .badge {
3373
- color: #0072b1;
3629
+ color: #f94877;
3374
3630
  background-color: #ffffff;
3375
3631
  }
3376
3632
  .btn-github {
@@ -3378,9 +3634,17 @@ table.text-center th {
3378
3634
  background-color: #444444;
3379
3635
  border-color: rgba(0, 0, 0, 0.2);
3380
3636
  }
3381
- .btn-github:hover,
3382
3637
  .btn-github:focus,
3383
- .btn-github.focus,
3638
+ .btn-github.focus {
3639
+ color: #ffffff;
3640
+ background-color: #2b2b2b;
3641
+ border-color: rgba(0, 0, 0, 0.2);
3642
+ }
3643
+ .btn-github:hover {
3644
+ color: #ffffff;
3645
+ background-color: #2b2b2b;
3646
+ border-color: rgba(0, 0, 0, 0.2);
3647
+ }
3384
3648
  .btn-github:active,
3385
3649
  .btn-github.active,
3386
3650
  .open > .dropdown-toggle.btn-github {
@@ -3397,27 +3661,35 @@ table.text-center th {
3397
3661
  color: #444444;
3398
3662
  background-color: #ffffff;
3399
3663
  }
3400
- .btn-google-plus {
3664
+ .btn-google {
3401
3665
  color: #ffffff;
3402
3666
  background-color: #dd4b39;
3403
3667
  border-color: rgba(0, 0, 0, 0.2);
3404
3668
  }
3405
- .btn-google-plus:hover,
3406
- .btn-google-plus:focus,
3407
- .btn-google-plus.focus,
3408
- .btn-google-plus:active,
3409
- .btn-google-plus.active,
3410
- .open > .dropdown-toggle.btn-google-plus {
3669
+ .btn-google:focus,
3670
+ .btn-google.focus {
3671
+ color: #ffffff;
3672
+ background-color: #c23321;
3673
+ border-color: rgba(0, 0, 0, 0.2);
3674
+ }
3675
+ .btn-google:hover {
3676
+ color: #ffffff;
3677
+ background-color: #c23321;
3678
+ border-color: rgba(0, 0, 0, 0.2);
3679
+ }
3680
+ .btn-google:active,
3681
+ .btn-google.active,
3682
+ .open > .dropdown-toggle.btn-google {
3411
3683
  color: #ffffff;
3412
3684
  background-color: #c23321;
3413
3685
  border-color: rgba(0, 0, 0, 0.2);
3414
3686
  }
3415
- .btn-google-plus:active,
3416
- .btn-google-plus.active,
3417
- .open > .dropdown-toggle.btn-google-plus {
3687
+ .btn-google:active,
3688
+ .btn-google.active,
3689
+ .open > .dropdown-toggle.btn-google {
3418
3690
  background-image: none;
3419
3691
  }
3420
- .btn-google-plus .badge {
3692
+ .btn-google .badge {
3421
3693
  color: #dd4b39;
3422
3694
  background-color: #ffffff;
3423
3695
  }
@@ -3426,9 +3698,17 @@ table.text-center th {
3426
3698
  background-color: #3f729b;
3427
3699
  border-color: rgba(0, 0, 0, 0.2);
3428
3700
  }
3429
- .btn-instagram:hover,
3430
3701
  .btn-instagram:focus,
3431
- .btn-instagram.focus,
3702
+ .btn-instagram.focus {
3703
+ color: #ffffff;
3704
+ background-color: #305777;
3705
+ border-color: rgba(0, 0, 0, 0.2);
3706
+ }
3707
+ .btn-instagram:hover {
3708
+ color: #ffffff;
3709
+ background-color: #305777;
3710
+ border-color: rgba(0, 0, 0, 0.2);
3711
+ }
3432
3712
  .btn-instagram:active,
3433
3713
  .btn-instagram.active,
3434
3714
  .open > .dropdown-toggle.btn-instagram {
@@ -3450,9 +3730,17 @@ table.text-center th {
3450
3730
  background-color: #007bb6;
3451
3731
  border-color: rgba(0, 0, 0, 0.2);
3452
3732
  }
3453
- .btn-linkedin:hover,
3454
3733
  .btn-linkedin:focus,
3455
- .btn-linkedin.focus,
3734
+ .btn-linkedin.focus {
3735
+ color: #ffffff;
3736
+ background-color: #005983;
3737
+ border-color: rgba(0, 0, 0, 0.2);
3738
+ }
3739
+ .btn-linkedin:hover {
3740
+ color: #ffffff;
3741
+ background-color: #005983;
3742
+ border-color: rgba(0, 0, 0, 0.2);
3743
+ }
3456
3744
  .btn-linkedin:active,
3457
3745
  .btn-linkedin.active,
3458
3746
  .open > .dropdown-toggle.btn-linkedin {
@@ -3469,14 +3757,182 @@ table.text-center th {
3469
3757
  color: #007bb6;
3470
3758
  background-color: #ffffff;
3471
3759
  }
3760
+ .btn-microsoft {
3761
+ color: #ffffff;
3762
+ background-color: #2672ec;
3763
+ border-color: rgba(0, 0, 0, 0.2);
3764
+ }
3765
+ .btn-microsoft:focus,
3766
+ .btn-microsoft.focus {
3767
+ color: #ffffff;
3768
+ background-color: #125acd;
3769
+ border-color: rgba(0, 0, 0, 0.2);
3770
+ }
3771
+ .btn-microsoft:hover {
3772
+ color: #ffffff;
3773
+ background-color: #125acd;
3774
+ border-color: rgba(0, 0, 0, 0.2);
3775
+ }
3776
+ .btn-microsoft:active,
3777
+ .btn-microsoft.active,
3778
+ .open > .dropdown-toggle.btn-microsoft {
3779
+ color: #ffffff;
3780
+ background-color: #125acd;
3781
+ border-color: rgba(0, 0, 0, 0.2);
3782
+ }
3783
+ .btn-microsoft:active,
3784
+ .btn-microsoft.active,
3785
+ .open > .dropdown-toggle.btn-microsoft {
3786
+ background-image: none;
3787
+ }
3788
+ .btn-microsoft .badge {
3789
+ color: #2672ec;
3790
+ background-color: #ffffff;
3791
+ }
3792
+ .btn-openid {
3793
+ color: #ffffff;
3794
+ background-color: #f7931e;
3795
+ border-color: rgba(0, 0, 0, 0.2);
3796
+ }
3797
+ .btn-openid:focus,
3798
+ .btn-openid.focus {
3799
+ color: #ffffff;
3800
+ background-color: #da7908;
3801
+ border-color: rgba(0, 0, 0, 0.2);
3802
+ }
3803
+ .btn-openid:hover {
3804
+ color: #ffffff;
3805
+ background-color: #da7908;
3806
+ border-color: rgba(0, 0, 0, 0.2);
3807
+ }
3808
+ .btn-openid:active,
3809
+ .btn-openid.active,
3810
+ .open > .dropdown-toggle.btn-openid {
3811
+ color: #ffffff;
3812
+ background-color: #da7908;
3813
+ border-color: rgba(0, 0, 0, 0.2);
3814
+ }
3815
+ .btn-openid:active,
3816
+ .btn-openid.active,
3817
+ .open > .dropdown-toggle.btn-openid {
3818
+ background-image: none;
3819
+ }
3820
+ .btn-openid .badge {
3821
+ color: #f7931e;
3822
+ background-color: #ffffff;
3823
+ }
3824
+ .btn-pinterest {
3825
+ color: #ffffff;
3826
+ background-color: #cb2027;
3827
+ border-color: rgba(0, 0, 0, 0.2);
3828
+ }
3829
+ .btn-pinterest:focus,
3830
+ .btn-pinterest.focus {
3831
+ color: #ffffff;
3832
+ background-color: #9f191f;
3833
+ border-color: rgba(0, 0, 0, 0.2);
3834
+ }
3835
+ .btn-pinterest:hover {
3836
+ color: #ffffff;
3837
+ background-color: #9f191f;
3838
+ border-color: rgba(0, 0, 0, 0.2);
3839
+ }
3840
+ .btn-pinterest:active,
3841
+ .btn-pinterest.active,
3842
+ .open > .dropdown-toggle.btn-pinterest {
3843
+ color: #ffffff;
3844
+ background-color: #9f191f;
3845
+ border-color: rgba(0, 0, 0, 0.2);
3846
+ }
3847
+ .btn-pinterest:active,
3848
+ .btn-pinterest.active,
3849
+ .open > .dropdown-toggle.btn-pinterest {
3850
+ background-image: none;
3851
+ }
3852
+ .btn-pinterest .badge {
3853
+ color: #cb2027;
3854
+ background-color: #ffffff;
3855
+ }
3856
+ .btn-reddit {
3857
+ color: #000000;
3858
+ background-color: #eff7ff;
3859
+ border-color: rgba(0, 0, 0, 0.2);
3860
+ }
3861
+ .btn-reddit:focus,
3862
+ .btn-reddit.focus {
3863
+ color: #000000;
3864
+ background-color: #bcddff;
3865
+ border-color: rgba(0, 0, 0, 0.2);
3866
+ }
3867
+ .btn-reddit:hover {
3868
+ color: #000000;
3869
+ background-color: #bcddff;
3870
+ border-color: rgba(0, 0, 0, 0.2);
3871
+ }
3872
+ .btn-reddit:active,
3873
+ .btn-reddit.active,
3874
+ .open > .dropdown-toggle.btn-reddit {
3875
+ color: #000000;
3876
+ background-color: #bcddff;
3877
+ border-color: rgba(0, 0, 0, 0.2);
3878
+ }
3879
+ .btn-reddit:active,
3880
+ .btn-reddit.active,
3881
+ .open > .dropdown-toggle.btn-reddit {
3882
+ background-image: none;
3883
+ }
3884
+ .btn-reddit .badge {
3885
+ color: #eff7ff;
3886
+ background-color: #000000;
3887
+ }
3888
+ .btn-soundcloud {
3889
+ color: #ffffff;
3890
+ background-color: #ff5500;
3891
+ border-color: rgba(0, 0, 0, 0.2);
3892
+ }
3893
+ .btn-soundcloud:focus,
3894
+ .btn-soundcloud.focus {
3895
+ color: #ffffff;
3896
+ background-color: #cc4400;
3897
+ border-color: rgba(0, 0, 0, 0.2);
3898
+ }
3899
+ .btn-soundcloud:hover {
3900
+ color: #ffffff;
3901
+ background-color: #cc4400;
3902
+ border-color: rgba(0, 0, 0, 0.2);
3903
+ }
3904
+ .btn-soundcloud:active,
3905
+ .btn-soundcloud.active,
3906
+ .open > .dropdown-toggle.btn-soundcloud {
3907
+ color: #ffffff;
3908
+ background-color: #cc4400;
3909
+ border-color: rgba(0, 0, 0, 0.2);
3910
+ }
3911
+ .btn-soundcloud:active,
3912
+ .btn-soundcloud.active,
3913
+ .open > .dropdown-toggle.btn-soundcloud {
3914
+ background-image: none;
3915
+ }
3916
+ .btn-soundcloud .badge {
3917
+ color: #ff5500;
3918
+ background-color: #ffffff;
3919
+ }
3472
3920
  .btn-tumblr {
3473
3921
  color: #ffffff;
3474
3922
  background-color: #2c4762;
3475
3923
  border-color: rgba(0, 0, 0, 0.2);
3476
3924
  }
3477
- .btn-tumblr:hover,
3478
3925
  .btn-tumblr:focus,
3479
- .btn-tumblr.focus,
3926
+ .btn-tumblr.focus {
3927
+ color: #ffffff;
3928
+ background-color: #1c2d3f;
3929
+ border-color: rgba(0, 0, 0, 0.2);
3930
+ }
3931
+ .btn-tumblr:hover {
3932
+ color: #ffffff;
3933
+ background-color: #1c2d3f;
3934
+ border-color: rgba(0, 0, 0, 0.2);
3935
+ }
3480
3936
  .btn-tumblr:active,
3481
3937
  .btn-tumblr.active,
3482
3938
  .open > .dropdown-toggle.btn-tumblr {
@@ -3498,9 +3954,17 @@ table.text-center th {
3498
3954
  background-color: #55acee;
3499
3955
  border-color: rgba(0, 0, 0, 0.2);
3500
3956
  }
3501
- .btn-twitter:hover,
3502
3957
  .btn-twitter:focus,
3503
- .btn-twitter.focus,
3958
+ .btn-twitter.focus {
3959
+ color: #ffffff;
3960
+ background-color: #2795e9;
3961
+ border-color: rgba(0, 0, 0, 0.2);
3962
+ }
3963
+ .btn-twitter:hover {
3964
+ color: #ffffff;
3965
+ background-color: #2795e9;
3966
+ border-color: rgba(0, 0, 0, 0.2);
3967
+ }
3504
3968
  .btn-twitter:active,
3505
3969
  .btn-twitter.active,
3506
3970
  .open > .dropdown-toggle.btn-twitter {
@@ -3517,14 +3981,54 @@ table.text-center th {
3517
3981
  color: #55acee;
3518
3982
  background-color: #ffffff;
3519
3983
  }
3984
+ .btn-vimeo {
3985
+ color: #ffffff;
3986
+ background-color: #1ab7ea;
3987
+ border-color: rgba(0, 0, 0, 0.2);
3988
+ }
3989
+ .btn-vimeo:focus,
3990
+ .btn-vimeo.focus {
3991
+ color: #ffffff;
3992
+ background-color: #1295bf;
3993
+ border-color: rgba(0, 0, 0, 0.2);
3994
+ }
3995
+ .btn-vimeo:hover {
3996
+ color: #ffffff;
3997
+ background-color: #1295bf;
3998
+ border-color: rgba(0, 0, 0, 0.2);
3999
+ }
4000
+ .btn-vimeo:active,
4001
+ .btn-vimeo.active,
4002
+ .open > .dropdown-toggle.btn-vimeo {
4003
+ color: #ffffff;
4004
+ background-color: #1295bf;
4005
+ border-color: rgba(0, 0, 0, 0.2);
4006
+ }
4007
+ .btn-vimeo:active,
4008
+ .btn-vimeo.active,
4009
+ .open > .dropdown-toggle.btn-vimeo {
4010
+ background-image: none;
4011
+ }
4012
+ .btn-vimeo .badge {
4013
+ color: #1ab7ea;
4014
+ background-color: #ffffff;
4015
+ }
3520
4016
  .btn-vk {
3521
4017
  color: #ffffff;
3522
4018
  background-color: #587ea3;
3523
4019
  border-color: rgba(0, 0, 0, 0.2);
3524
4020
  }
3525
- .btn-vk:hover,
3526
4021
  .btn-vk:focus,
3527
- .btn-vk.focus,
4022
+ .btn-vk.focus {
4023
+ color: #ffffff;
4024
+ background-color: #466482;
4025
+ border-color: rgba(0, 0, 0, 0.2);
4026
+ }
4027
+ .btn-vk:hover {
4028
+ color: #ffffff;
4029
+ background-color: #466482;
4030
+ border-color: rgba(0, 0, 0, 0.2);
4031
+ }
3528
4032
  .btn-vk:active,
3529
4033
  .btn-vk.active,
3530
4034
  .open > .dropdown-toggle.btn-vk {
@@ -3541,6 +4045,38 @@ table.text-center th {
3541
4045
  color: #587ea3;
3542
4046
  background-color: #ffffff;
3543
4047
  }
4048
+ .btn-yahoo {
4049
+ color: #ffffff;
4050
+ background-color: #720e9e;
4051
+ border-color: rgba(0, 0, 0, 0.2);
4052
+ }
4053
+ .btn-yahoo:focus,
4054
+ .btn-yahoo.focus {
4055
+ color: #ffffff;
4056
+ background-color: #500a6f;
4057
+ border-color: rgba(0, 0, 0, 0.2);
4058
+ }
4059
+ .btn-yahoo:hover {
4060
+ color: #ffffff;
4061
+ background-color: #500a6f;
4062
+ border-color: rgba(0, 0, 0, 0.2);
4063
+ }
4064
+ .btn-yahoo:active,
4065
+ .btn-yahoo.active,
4066
+ .open > .dropdown-toggle.btn-yahoo {
4067
+ color: #ffffff;
4068
+ background-color: #500a6f;
4069
+ border-color: rgba(0, 0, 0, 0.2);
4070
+ }
4071
+ .btn-yahoo:active,
4072
+ .btn-yahoo.active,
4073
+ .open > .dropdown-toggle.btn-yahoo {
4074
+ background-image: none;
4075
+ }
4076
+ .btn-yahoo .badge {
4077
+ color: #720e9e;
4078
+ background-color: #ffffff;
4079
+ }
3544
4080
  /*
3545
4081
  * Plugin: Full Calendar
3546
4082
  * ---------------------
@@ -3649,7 +4185,7 @@ table.text-center th {
3649
4185
  .select2-container--default .select2-selection--single,
3650
4186
  .select2-selection .select2-selection--single {
3651
4187
  border: 1px solid #d2d6de;
3652
- border-radius: 0px;
4188
+ border-radius: 0;
3653
4189
  padding: 6px 12px;
3654
4190
  height: 34px;
3655
4191
  }
@@ -3658,7 +4194,7 @@ table.text-center th {
3658
4194
  }
3659
4195
  .select2-dropdown {
3660
4196
  border: 1px solid #d2d6de;
3661
- border-radius: 0px;
4197
+ border-radius: 0;
3662
4198
  }
3663
4199
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
3664
4200
  background-color: #3c8dbc;
@@ -3707,8 +4243,7 @@ table.text-center th {
3707
4243
  }
3708
4244
  .select2-container--default .select2-selection--multiple {
3709
4245
  border: 1px solid #d2d6de;
3710
- border-radius: 0px;
3711
- height: 34px;
4246
+ border-radius: 0;
3712
4247
  }
3713
4248
  .select2-container--default .select2-selection--multiple:focus {
3714
4249
  border-color: #3c8dbc;
@@ -3729,6 +4264,9 @@ table.text-center th {
3729
4264
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
3730
4265
  color: #fff;
3731
4266
  }
4267
+ .select2-container .select2-selection--single .select2-selection__rendered {
4268
+ padding-right: 10px;
4269
+ }
3732
4270
  /*
3733
4271
  * General: Miscellaneous
3734
4272
  * ----------------------
@@ -3742,9 +4280,14 @@ table.text-center th {
3742
4280
  .margin-bottom {
3743
4281
  margin-bottom: 20px;
3744
4282
  }
4283
+ .margin-bottom-none {
4284
+ margin-bottom: 0;
4285
+ }
4286
+ .margin-r-5 {
4287
+ margin-right: 5px;
4288
+ }
3745
4289
  .inline {
3746
4290
  display: inline;
3747
- width: auto;
3748
4291
  }
3749
4292
  .description-block {
3750
4293
  display: block;
@@ -3828,6 +4371,9 @@ table.text-center th {
3828
4371
  color: #000;
3829
4372
  background-color: #d2d6de !important;
3830
4373
  }
4374
+ .bg-gray-light {
4375
+ background-color: #f7f7f7;
4376
+ }
3831
4377
  .bg-black {
3832
4378
  background-color: #111111 !important;
3833
4379
  }
@@ -4003,20 +4549,34 @@ table.text-center th {
4003
4549
  .text-maroon {
4004
4550
  color: #d81b60 !important;
4005
4551
  }
4552
+ .link-muted {
4553
+ color: #7a869d;
4554
+ }
4555
+ .link-muted:hover,
4556
+ .link-muted:focus {
4557
+ color: #606c84;
4558
+ }
4559
+ .link-black {
4560
+ color: #666;
4561
+ }
4562
+ .link-black:hover,
4563
+ .link-black:focus {
4564
+ color: #999;
4565
+ }
4006
4566
  .hide {
4007
4567
  display: none !important;
4008
4568
  }
4009
4569
  .no-border {
4010
- border: 0px !important;
4570
+ border: 0 !important;
4011
4571
  }
4012
4572
  .no-padding {
4013
- padding: 0px !important;
4573
+ padding: 0 !important;
4014
4574
  }
4015
4575
  .no-margin {
4016
- margin: 0px !important;
4576
+ margin: 0 !important;
4017
4577
  }
4018
4578
  .no-shadow {
4019
- box-shadow: none!important;
4579
+ box-shadow: none !important;
4020
4580
  }
4021
4581
  .list-unstyled,
4022
4582
  .chart-legend,
@@ -4027,6 +4587,13 @@ table.text-center th {
4027
4587
  margin: 0;
4028
4588
  padding: 0;
4029
4589
  }
4590
+ .list-group-unbordered > .list-group-item {
4591
+ border-left: 0;
4592
+ border-right: 0;
4593
+ border-radius: 0;
4594
+ padding-left: 0;
4595
+ padding-right: 0;
4596
+ }
4030
4597
  .flat {
4031
4598
  border-radius: 0 !important;
4032
4599
  }
@@ -4035,10 +4602,13 @@ table.text-center th {
4035
4602
  .text-bold.table th {
4036
4603
  font-weight: 700;
4037
4604
  }
4605
+ .text-sm {
4606
+ font-size: 12px;
4607
+ }
4038
4608
  .jqstooltip {
4039
- padding: 5px!important;
4040
- width: auto!important;
4041
- height: auto!important;
4609
+ padding: 5px !important;
4610
+ width: auto !important;
4611
+ height: auto !important;
4042
4612
  }
4043
4613
  .bg-teal-gradient {
4044
4614
  background: #39cccc !important;
@@ -4130,6 +4700,130 @@ table.text-center th {
4130
4700
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e73f7c', endColorstr='#d81b60', GradientType=0) !important;
4131
4701
  color: #fff;
4132
4702
  }
4703
+ .description-block .description-icon {
4704
+ font-size: 16px;
4705
+ }
4706
+ .no-pad-top {
4707
+ padding-top: 0;
4708
+ }
4709
+ .position-static {
4710
+ position: static !important;
4711
+ }
4712
+ .list-header {
4713
+ font-size: 15px;
4714
+ padding: 10px 4px;
4715
+ font-weight: bold;
4716
+ color: #666;
4717
+ }
4718
+ .list-seperator {
4719
+ height: 1px;
4720
+ background: #f4f4f4;
4721
+ margin: 15px 0 9px 0;
4722
+ }
4723
+ .list-link > a {
4724
+ padding: 4px;
4725
+ color: #777;
4726
+ }
4727
+ .list-link > a:hover {
4728
+ color: #222;
4729
+ }
4730
+ .font-light {
4731
+ font-weight: 300;
4732
+ }
4733
+ .user-block:before,
4734
+ .user-block:after {
4735
+ content: " ";
4736
+ display: table;
4737
+ }
4738
+ .user-block:after {
4739
+ clear: both;
4740
+ }
4741
+ .user-block img {
4742
+ width: 40px;
4743
+ height: 40px;
4744
+ float: left;
4745
+ }
4746
+ .user-block .username,
4747
+ .user-block .description,
4748
+ .user-block .comment {
4749
+ display: block;
4750
+ margin-left: 50px;
4751
+ }
4752
+ .user-block .username {
4753
+ font-size: 16px;
4754
+ font-weight: 600;
4755
+ }
4756
+ .user-block .description {
4757
+ color: #999;
4758
+ font-size: 13px;
4759
+ }
4760
+ .user-block.user-block-sm .username,
4761
+ .user-block.user-block-sm .description,
4762
+ .user-block.user-block-sm .comment {
4763
+ margin-left: 40px;
4764
+ }
4765
+ .user-block.user-block-sm .username {
4766
+ font-size: 14px;
4767
+ }
4768
+ .img-sm,
4769
+ .img-md,
4770
+ .img-lg,
4771
+ .box-comments .box-comment img,
4772
+ .user-block.user-block-sm img {
4773
+ float: left;
4774
+ }
4775
+ .img-sm,
4776
+ .box-comments .box-comment img,
4777
+ .user-block.user-block-sm img {
4778
+ width: 30px !important;
4779
+ height: 30px !important;
4780
+ }
4781
+ .img-sm + .img-push {
4782
+ margin-left: 40px;
4783
+ }
4784
+ .img-md {
4785
+ width: 60px;
4786
+ height: 60px;
4787
+ }
4788
+ .img-md + .img-push {
4789
+ margin-left: 70px;
4790
+ }
4791
+ .img-lg {
4792
+ width: 100px;
4793
+ height: 100px;
4794
+ }
4795
+ .img-lg + .img-push {
4796
+ margin-left: 110px;
4797
+ }
4798
+ .img-bordered {
4799
+ border: 3px solid #d2d6de;
4800
+ padding: 3px;
4801
+ }
4802
+ .img-bordered-sm {
4803
+ border: 2px solid #d2d6de;
4804
+ padding: 2px;
4805
+ }
4806
+ .attachment-block {
4807
+ border: 1px solid #f4f4f4;
4808
+ padding: 5px;
4809
+ margin-bottom: 10px;
4810
+ background: #f7f7f7;
4811
+ }
4812
+ .attachment-block .attachment-img {
4813
+ max-width: 100px;
4814
+ max-height: 100px;
4815
+ height: auto;
4816
+ float: left;
4817
+ }
4818
+ .attachment-block .attachment-pushed {
4819
+ margin-left: 110px;
4820
+ }
4821
+ .attachment-block .attachment-heading {
4822
+ margin: 0;
4823
+ }
4824
+ .attachment-block .attachment-text {
4825
+ color: #555;
4826
+ }
4133
4827
  .connectedSortable {
4134
4828
  min-height: 100px;
4135
4829
  }
@@ -4163,7 +4857,7 @@ table.text-center th {
4163
4857
  }
4164
4858
  .chart svg,
4165
4859
  .chart canvas {
4166
- width: 100%!important;
4860
+ width: 100% !important;
4167
4861
  }
4168
4862
  /*
4169
4863
  * Misc: print
@@ -4175,13 +4869,13 @@ table.text-center th {
4175
4869
  .left-side,
4176
4870
  .main-header,
4177
4871
  .content-header {
4178
- display: none!important;
4872
+ display: none !important;
4179
4873
  }
4180
4874
  .content-wrapper,
4181
4875
  .right-side,
4182
4876
  .main-footer {
4183
- margin-left: 0!important;
4184
- min-height: 0!important;
4877
+ margin-left: 0 !important;
4878
+ min-height: 0 !important;
4185
4879
  -webkit-transform: translate(0, 0) !important;
4186
4880
  -ms-transform: translate(0, 0) !important;
4187
4881
  -o-transform: translate(0, 0) !important;
@@ -4189,7 +4883,7 @@ table.text-center th {
4189
4883
  }
4190
4884
  .fixed .content-wrapper,
4191
4885
  .fixed .right-side {
4192
- padding-top: 0!important;
4886
+ padding-top: 0 !important;
4193
4887
  }
4194
4888
  .invoice {
4195
4889
  width: 100%;
@@ -4206,6 +4900,6 @@ table.text-center th {
4206
4900
  }
4207
4901
  .table-responsive > .table tr th,
4208
4902
  .table-responsive > .table tr td {
4209
- white-space: normal!important;
4903
+ white-space: normal !important;
4210
4904
  }
4211
4905
  }