"
6 | ],
7 | "description": "Admin dashboard and control panel template",
8 | "main": [
9 | "index2.html",
10 | "dist/css/AdminLTE.css",
11 | "dist/js/app.js",
12 | "build/less/AdminLTE.less"
13 | ],
14 | "keywords": [
15 | "css",
16 | "js",
17 | "html",
18 | "template",
19 | "admin",
20 | "bootstrap",
21 | "theme",
22 | "backend",
23 | "responsive"
24 | ],
25 | "license": "MIT",
26 | "ignore": [
27 | "/.*",
28 | "node_modules",
29 | "bower_components",
30 | "composer.json",
31 | "documentation"
32 | ]
33 | }
34 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/alerts.less:
--------------------------------------------------------------------------------
1 | // Alerts
2 |
3 | .alert-variant(@background; @border; @text-color) {
4 | background-color: @background;
5 | border-color: @border;
6 | color: @text-color;
7 |
8 | hr {
9 | border-top-color: darken(@border, 5%);
10 | }
11 | .alert-link {
12 | color: darken(@text-color, 10%);
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/background-variant.less:
--------------------------------------------------------------------------------
1 | // Contextual backgrounds
2 |
3 | .bg-variant(@color) {
4 | background-color: @color;
5 | a&:hover,
6 | a&:focus {
7 | background-color: darken(@color, 10%);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/border-radius.less:
--------------------------------------------------------------------------------
1 | // Single side border-radius
2 |
3 | .border-top-radius(@radius) {
4 | border-top-right-radius: @radius;
5 | border-top-left-radius: @radius;
6 | }
7 |
8 | .border-right-radius(@radius) {
9 | border-bottom-right-radius: @radius;
10 | border-top-right-radius: @radius;
11 | }
12 |
13 | .border-bottom-radius(@radius) {
14 | border-bottom-right-radius: @radius;
15 | border-bottom-left-radius: @radius;
16 | }
17 |
18 | .border-left-radius(@radius) {
19 | border-bottom-left-radius: @radius;
20 | border-top-left-radius: @radius;
21 | }
22 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/center-block.less:
--------------------------------------------------------------------------------
1 | // Center-align a block level element
2 |
3 | .center-block() {
4 | display: block;
5 | margin-left: auto;
6 | margin-right: auto;
7 | }
8 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/clearfix.less:
--------------------------------------------------------------------------------
1 | // Clearfix
2 | //
3 | // For modern browsers
4 | // 1. The space content is one way to avoid an Opera bug when the
5 | // contenteditable attribute is included anywhere else in the document.
6 | // Otherwise it causes space to appear at the top and bottom of elements
7 | // that are clearfixed.
8 | // 2. The use of `table` rather than `block` is only necessary if using
9 | // `:before` to contain the top-margins of child elements.
10 | //
11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/
12 |
13 | .clearfix() {
14 | &:before,
15 | &:after {
16 | content: " "; // 1
17 | display: table; // 2
18 | }
19 | &:after {
20 | clear: both;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/hide-text.less:
--------------------------------------------------------------------------------
1 | // CSS image replacement
2 | //
3 | // Heads up! v3 launched with only `.hide-text()`, but per our pattern for
4 | // mixins being reused as classes with the same name, this doesn't hold up. As
5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.
6 | //
7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
8 |
9 | // Deprecated as of v3.0.1 (will be removed in v4)
10 | .hide-text() {
11 | font: ~"0/0" a;
12 | color: transparent;
13 | text-shadow: none;
14 | background-color: transparent;
15 | border: 0;
16 | }
17 |
18 | // New mixin to use as of v3.0.1
19 | .text-hide() {
20 | .hide-text();
21 | }
22 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/labels.less:
--------------------------------------------------------------------------------
1 | // Labels
2 |
3 | .label-variant(@color) {
4 | background-color: @color;
5 |
6 | &[href] {
7 | &:hover,
8 | &:focus {
9 | background-color: darken(@color, 10%);
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/list-group.less:
--------------------------------------------------------------------------------
1 | // List Groups
2 |
3 | .list-group-item-variant(@state; @background; @color) {
4 | .list-group-item-@{state} {
5 | color: @color;
6 | background-color: @background;
7 |
8 | a&,
9 | button& {
10 | color: @color;
11 |
12 | .list-group-item-heading {
13 | color: inherit;
14 | }
15 |
16 | &:hover,
17 | &:focus {
18 | color: @color;
19 | background-color: darken(@background, 5%);
20 | }
21 | &.active,
22 | &.active:hover,
23 | &.active:focus {
24 | color: #fff;
25 | background-color: @color;
26 | border-color: @color;
27 | }
28 | }
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/nav-divider.less:
--------------------------------------------------------------------------------
1 | // Horizontal dividers
2 | //
3 | // Dividers (basically an hr) within dropdowns and nav lists
4 |
5 | .nav-divider(@color: #e5e5e5) {
6 | height: 1px;
7 | margin: ((@line-height-computed / 2) - 1) 0;
8 | overflow: hidden;
9 | background-color: @color;
10 | }
11 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/nav-vertical-align.less:
--------------------------------------------------------------------------------
1 | // Navbar vertical align
2 | //
3 | // Vertically center elements in the navbar.
4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
5 |
6 | .navbar-vertical-align(@element-height) {
7 | margin-top: ((@navbar-height - @element-height) / 2);
8 | margin-bottom: ((@navbar-height - @element-height) / 2);
9 | }
10 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/opacity.less:
--------------------------------------------------------------------------------
1 | // Opacity
2 |
3 | .opacity(@opacity) {
4 | opacity: @opacity;
5 | // IE8 filter
6 | @opacity-ie: (@opacity * 100);
7 | filter: ~"alpha(opacity=@{opacity-ie})";
8 | }
9 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/pagination.less:
--------------------------------------------------------------------------------
1 | // Pagination
2 |
3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
4 | > li {
5 | > a,
6 | > span {
7 | padding: @padding-vertical @padding-horizontal;
8 | font-size: @font-size;
9 | line-height: @line-height;
10 | }
11 | &:first-child {
12 | > a,
13 | > span {
14 | .border-left-radius(@border-radius);
15 | }
16 | }
17 | &:last-child {
18 | > a,
19 | > span {
20 | .border-right-radius(@border-radius);
21 | }
22 | }
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/panels.less:
--------------------------------------------------------------------------------
1 | // Panels
2 |
3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
4 | border-color: @border;
5 |
6 | & > .panel-heading {
7 | color: @heading-text-color;
8 | background-color: @heading-bg-color;
9 | border-color: @heading-border;
10 |
11 | + .panel-collapse > .panel-body {
12 | border-top-color: @border;
13 | }
14 | .badge {
15 | color: @heading-bg-color;
16 | background-color: @heading-text-color;
17 | }
18 | }
19 | & > .panel-footer {
20 | + .panel-collapse > .panel-body {
21 | border-bottom-color: @border;
22 | }
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/progress-bar.less:
--------------------------------------------------------------------------------
1 | // Progress bars
2 |
3 | .progress-bar-variant(@color) {
4 | background-color: @color;
5 |
6 | // Deprecated parent class requirement as of v3.2.0
7 | .progress-striped & {
8 | #gradient > .striped();
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/reset-filter.less:
--------------------------------------------------------------------------------
1 | // Reset filters for IE
2 | //
3 | // When you need to remove a gradient background, do not forget to use this to reset
4 | // the IE filter for IE9 and below.
5 |
6 | .reset-filter() {
7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
8 | }
9 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/reset-text.less:
--------------------------------------------------------------------------------
1 | .reset-text() {
2 | font-family: @font-family-base;
3 | // We deliberately do NOT reset font-size.
4 | font-style: normal;
5 | font-weight: normal;
6 | letter-spacing: normal;
7 | line-break: auto;
8 | line-height: @line-height-base;
9 | text-align: left; // Fallback for where `start` is not supported
10 | text-align: start;
11 | text-decoration: none;
12 | text-shadow: none;
13 | text-transform: none;
14 | white-space: normal;
15 | word-break: normal;
16 | word-spacing: normal;
17 | word-wrap: normal;
18 | }
19 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/resize.less:
--------------------------------------------------------------------------------
1 | // Resize anything
2 |
3 | .resizable(@direction) {
4 | resize: @direction; // Options: horizontal, vertical, both
5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
6 | }
7 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/responsive-visibility.less:
--------------------------------------------------------------------------------
1 | // Responsive utilities
2 |
3 | //
4 | // More easily include all the states for responsive-utilities.less.
5 | .responsive-visibility() {
6 | display: block !important;
7 | table& {
8 | display: table !important;
9 | }
10 | tr& {
11 | display: table-row !important;
12 | }
13 | th&,
14 | td& {
15 | display: table-cell !important;
16 | }
17 | }
18 |
19 | .responsive-invisibility() {
20 | display: none !important;
21 | }
22 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/size.less:
--------------------------------------------------------------------------------
1 | // Sizing shortcuts
2 |
3 | .size(@width; @height) {
4 | width: @width;
5 | height: @height;
6 | }
7 |
8 | .square(@size) {
9 | .size(@size; @size);
10 | }
11 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/tab-focus.less:
--------------------------------------------------------------------------------
1 | // WebKit-style focus
2 |
3 | .tab-focus() {
4 | // Default
5 | outline: thin dotted;
6 | // WebKit
7 | outline: 5px auto -webkit-focus-ring-color;
8 | outline-offset: -2px;
9 | }
10 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/table-row.less:
--------------------------------------------------------------------------------
1 | // Tables
2 |
3 | .table-row-variant(@state; @background) {
4 | // Exact selectors below required to override `.table-striped` and prevent
5 | // inheritance to nested tables.
6 | .table > thead > tr,
7 | .table > tbody > tr,
8 | .table > tfoot > tr {
9 | > td.@{state},
10 | > th.@{state},
11 | &.@{state} > td,
12 | &.@{state} > th {
13 | background-color: @background;
14 | }
15 | }
16 |
17 | // Hover states for `.table-hover`
18 | // Note: this is not available for cells or rows within `thead` or `tfoot`.
19 | .table-hover > tbody > tr {
20 | > td.@{state}:hover,
21 | > th.@{state}:hover,
22 | &.@{state}:hover > td,
23 | &:hover > .@{state},
24 | &.@{state}:hover > th {
25 | background-color: darken(@background, 5%);
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/text-emphasis.less:
--------------------------------------------------------------------------------
1 | // Typography
2 |
3 | .text-emphasis-variant(@color) {
4 | color: @color;
5 | a&:hover,
6 | a&:focus {
7 | color: darken(@color, 10%);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/build/bootstrap-less/mixins/text-overflow.less:
--------------------------------------------------------------------------------
1 | // Text overflow
2 | // Requires inline-block or block for proper styling
3 |
4 | .text-overflow() {
5 | overflow: hidden;
6 | text-overflow: ellipsis;
7 | white-space: nowrap;
8 | }
9 |
--------------------------------------------------------------------------------
/build/js/iframe/basejs/jquery-slimscroll/README.md:
--------------------------------------------------------------------------------
1 | # What is slimScroll?
2 |
3 | slimScroll is a small jQuery plugin that transforms any div into a scrollable area with a nice scrollbar - similar to the one Facebook and Google started using in their products recently. slimScroll doesn't occupy any visual space as it only appears on a user initiated mouse-over. User can drag the scrollbar or use mouse-wheel to change the scroll value.
4 |
5 | Demo and more: http://rocha.la/jQuery-slimScroll
6 |
7 | Copyright (c) 2011 Piotr Rochala (http://rocha.la)
8 | Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
9 |
10 |
--------------------------------------------------------------------------------
/build/less/.csslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "adjoining-classes": false,
3 | "box-sizing": false,
4 | "box-model": false,
5 | "compatible-vendor-prefixes": false,
6 | "floats": false,
7 | "font-sizes": false,
8 | "gradients": false,
9 | "important": false,
10 | "known-properties": false,
11 | "outline-none": false,
12 | "qualified-headings": false,
13 | "regex-selectors": false,
14 | "shorthand": false,
15 | "text-indent": false,
16 | "unique-headings": false,
17 | "universal-selector": false,
18 | "unqualified-attributes": false,
19 | "ids": false,
20 | "fallback-colors": false,
21 | "vendor-prefix": false,
22 | "import": false
23 | }
24 |
--------------------------------------------------------------------------------
/build/less/404_500_errors.less:
--------------------------------------------------------------------------------
1 | /*
2 | * Page: 400 and 500 error pages
3 | * ------------------------------
4 | */
5 | .error-page {
6 | width: 600px;
7 | margin: 20px auto 0 auto;
8 | @media (max-width: @screen-sm-max) {
9 | width: 100%;
10 | }
11 | //For the error number e.g: 404
12 | > .headline {
13 | float: left;
14 | font-size: 100px;
15 | font-weight: 300;
16 | @media (max-width: @screen-sm-max) {
17 | float: none;
18 | text-align: center;
19 | }
20 | }
21 | //For the message
22 | > .error-content {
23 | margin-left: 190px;
24 | @media (max-width: @screen-sm-max) {
25 | margin-left: 0;
26 | }
27 | > h3 {
28 | font-weight: 300;
29 | font-size: 25px;
30 | @media (max-width: @screen-sm-max) {
31 | text-align: center;
32 | }
33 | }
34 | display: block;
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/build/less/alerts.less:
--------------------------------------------------------------------------------
1 | /*
2 | * Component: alert
3 | * ----------------
4 | */
5 |
6 | .alert {
7 | .border-radius(3px);
8 | h4 {
9 | font-weight: 600;
10 | }
11 | .icon {
12 | margin-right: 10px;
13 | }
14 | .close {
15 | color: #000;
16 | .opacity(.2);
17 | &:hover {
18 | .opacity(.5);
19 | }
20 | }
21 | a {
22 | color: #fff;
23 | text-decoration: underline;
24 | }
25 | }
26 |
27 | //Alert Variants
28 | .alert-success {
29 | &:extend(.bg-green);
30 | border-color: darken(@green, 5%);
31 | }
32 |
33 | .alert-danger,
34 | .alert-error {
35 | &:extend(.bg-red);
36 | border-color: darken(@red, 5%);
37 | }
38 |
39 | .alert-warning {
40 | &:extend(.bg-yellow);
41 | border-color: darken(@yellow, 5%);
42 | }
43 |
44 | .alert-info {
45 | &:extend(.bg-aqua);
46 | border-color: darken(@aqua, 5%);
47 | }
48 |
--------------------------------------------------------------------------------
/build/less/callout.less:
--------------------------------------------------------------------------------
1 | /*
2 | * Component: Callout
3 | * ------------------
4 | */
5 |
6 | // Base styles (regardless of theme)
7 | .callout {
8 | .border-radius(3px);
9 | margin: 0 0 20px 0;
10 | padding: 15px 30px 15px 15px;
11 | border-left: 5px solid #eee;
12 | a {
13 | color: #fff;
14 | text-decoration: underline;
15 | &:hover {
16 | color: #eee;
17 | }
18 | }
19 | h4 {
20 | margin-top: 0;
21 | font-weight: 600;
22 | }
23 | p:last-child {
24 | margin-bottom: 0;
25 | }
26 | code,
27 | .highlight {
28 | background-color: #fff;
29 | }
30 |
31 | // Themes for different contexts
32 | &.callout-danger {
33 | &:extend(.bg-red);
34 | border-color: darken(@red, 10%);
35 | }
36 | &.callout-warning {
37 | &:extend(.bg-yellow);
38 | border-color: darken(@yellow, 10%);
39 | }
40 | &.callout-info {
41 | &:extend(.bg-aqua);
42 | border-color: darken(@aqua, 10%);
43 | }
44 | &.callout-success {
45 | &:extend(.bg-green);
46 | border-color: darken(@green, 10%);
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/build/less/carousel.less:
--------------------------------------------------------------------------------
1 | /*
2 | * Component: Carousel
3 | * -------------------
4 | */
5 | .carousel-control {
6 | &.left,
7 | &.right {
8 | background-image: none;
9 | }
10 | > .fa {
11 | font-size: 40px;
12 | position: absolute;
13 | top: 50%;
14 | z-index: 5;
15 | display: inline-block;
16 | margin-top: -20px;
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/build/less/invoice.less:
--------------------------------------------------------------------------------
1 | /*
2 | * Page: Invoice
3 | * -------------
4 | */
5 |
6 | .invoice {
7 | position: relative;
8 | background: #fff;
9 | border: 1px solid #f4f4f4;
10 | padding: 20px;
11 | margin: 10px 25px;
12 | }
13 |
14 | .invoice-title {
15 | margin-top: 0;
16 | }
17 |
--------------------------------------------------------------------------------
/build/less/labels.less:
--------------------------------------------------------------------------------
1 | /*
2 | * Component: Label
3 | * ----------------
4 | */
5 | .label-default {
6 | background-color: @gray;
7 | color: #444;
8 | }
9 |
10 | .label-danger {
11 | &:extend(.bg-red);
12 | }
13 |
14 | .label-info {
15 | &:extend(.bg-aqua);
16 | }
17 |
18 | .label-warning {
19 | &:extend(.bg-yellow);
20 | }
21 |
22 | .label-primary {
23 | &:extend(.bg-light-blue);
24 | }
25 |
26 | .label-success {
27 | &:extend(.bg-green);
28 | }
29 |
--------------------------------------------------------------------------------
/build/less/login_and_register.less:
--------------------------------------------------------------------------------
1 | /*
2 | * Page: Login & Register
3 | * ----------------------
4 | */
5 |
6 | .login-logo,
7 | .register-logo {
8 | font-size: 35px;
9 | text-align: center;
10 | margin-bottom: 25px;
11 | font-weight: 300;
12 | a {
13 | color: #444;
14 | }
15 | }
16 |
17 | .login-page,
18 | .register-page {
19 | background: @gray;
20 | }
21 |
22 | .login-box,
23 | .register-box {
24 | width: 360px;
25 | margin: 7% auto;
26 | @media (max-width: @screen-sm) {
27 | width: 90%;
28 | margin-top: 20px;
29 | }
30 | }
31 |
32 | .login-box-body,
33 | .register-box-body {
34 | background: #fff;
35 | padding: 20px;
36 | border-top: 0;
37 | color: #666;
38 | .form-control-feedback {
39 | color: #777;
40 | }
41 | }
42 |
43 | .login-box-msg,
44 | .register-box-msg {
45 | margin: 0;
46 | text-align: center;
47 | padding: 0 20px 20px 20px;
48 | }
49 |
50 | .social-auth-links {
51 | margin: 10px 0;
52 | }
53 |
--------------------------------------------------------------------------------
/build/less/menu.less:
--------------------------------------------------------------------------------
1 | .nav-link {
2 | cursor: pointer;
3 | }
--------------------------------------------------------------------------------
/build/less/products.less:
--------------------------------------------------------------------------------
1 | /*
2 | * Component: Products List
3 | * ------------------------
4 | */
5 | .products-list {
6 | list-style: none;
7 | margin: 0;
8 | padding: 0;
9 | > .item {
10 | .border-radius(@box-border-radius);
11 | .box-shadow(@box-boxshadow);
12 | .clearfix();
13 | padding: 10px 0;
14 | background: #fff;
15 | }
16 | .product-img {
17 | float: left;
18 | img {
19 | width: 50px;
20 | height: 50px;
21 | }
22 | }
23 | .product-info {
24 | margin-left: 60px;
25 | }
26 | .product-title {
27 | font-weight: 600;
28 | }
29 | .product-description {
30 | display: block;
31 | color: #999;
32 | overflow: hidden;
33 | white-space: nowrap;
34 | text-overflow: ellipsis;
35 | }
36 | }
37 |
38 | .product-list-in-box > .item {
39 | .box-shadow(none);
40 | .border-radius(0);
41 | border-bottom: 1px solid @box-border-color;
42 | &:last-of-type {
43 | border-bottom-width: 0;
44 | }
45 | }
46 |
--------------------------------------------------------------------------------
/build/less/profile.less:
--------------------------------------------------------------------------------
1 | /*
2 | * Page: Profile
3 | * -------------
4 | */
5 |
6 | .profile-user-img {
7 | margin: 0 auto;
8 | width: 100px;
9 | padding: 3px;
10 | border: 3px solid @gray;
11 | }
12 |
13 | .profile-username {
14 | font-size: 21px;
15 | margin-top: 5px;
16 | }
17 |
18 | .post {
19 | border-bottom: 1px solid @gray;
20 | margin-bottom: 15px;
21 | padding-bottom: 15px;
22 | color: #666;
23 | &:last-of-type {
24 | border-bottom: 0;
25 | margin-bottom: 0;
26 | padding-bottom: 0;
27 | }
28 | .user-block {
29 | margin-bottom: 15px;
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/build/less/skins/_all-skins.less:
--------------------------------------------------------------------------------
1 | //All skins in one file
2 | @import "skin-blue.less";
3 | @import "skin-blue-light.less";
4 | @import "skin-black.less";
5 | @import "skin-black-light.less";
6 | @import "skin-green.less";
7 | @import "skin-green-light.less";
8 | @import "skin-red.less";
9 | @import "skin-red-light.less";
10 | @import "skin-yellow.less";
11 | @import "skin-yellow-light.less";
12 | @import "skin-purple.less";
13 | @import "skin-purple-light.less";
14 |
--------------------------------------------------------------------------------
/build/less/users-list.less:
--------------------------------------------------------------------------------
1 | /*
2 | * Component: Users List
3 | * ---------------------
4 | */
5 | .users-list {
6 | &:extend(.list-unstyled);
7 | > li {
8 | width: 25%;
9 | float: left;
10 | padding: 10px;
11 | text-align: center;
12 | img {
13 | .border-radius(50%);
14 | max-width: 100%;
15 | height: auto;
16 | }
17 | > a:hover {
18 | &,
19 | .users-list-name {
20 | color: #999;
21 | }
22 | }
23 | }
24 | }
25 |
26 | .users-list-name,
27 | .users-list-date {
28 | display: block;
29 | }
30 |
31 | .users-list-name {
32 | font-weight: 600;
33 | color: #444;
34 | overflow: hidden;
35 | white-space: nowrap;
36 | text-overflow: ellipsis;
37 | }
38 |
39 | .users-list-date {
40 | color: #999;
41 | font-size: 12px;
42 | }
43 |
--------------------------------------------------------------------------------
/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "almasaeed2010/adminlte",
3 | "description": "AdminLTE - admin control panel and dashboard that's based on Bootstrap 3",
4 | "homepage": "http://almsaeedstudio.com/",
5 | "keywords": [
6 | "css",
7 | "js",
8 | "less",
9 | "responsive",
10 | "back-end",
11 | "template",
12 | "theme",
13 | "web",
14 | "admin"
15 | ],
16 | "authors": [
17 | {
18 | "name": "Abdullah Almsaeed",
19 | "email": "abdullah@almsaeedstudio.com"
20 | }
21 | ],
22 | "license": "MIT",
23 | "support": {
24 | "issues": "https://github.com/almasaeed2010/AdminLTE/issues"
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/dist/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/dist/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/dist/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/dist/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/dist/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/dist/fonts/ionicons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/fonts/ionicons.eot
--------------------------------------------------------------------------------
/dist/fonts/ionicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/fonts/ionicons.ttf
--------------------------------------------------------------------------------
/dist/fonts/ionicons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/fonts/ionicons.woff
--------------------------------------------------------------------------------
/dist/img/avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/avatar.png
--------------------------------------------------------------------------------
/dist/img/avatar04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/avatar04.png
--------------------------------------------------------------------------------
/dist/img/avatar2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/avatar2.png
--------------------------------------------------------------------------------
/dist/img/avatar3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/avatar3.png
--------------------------------------------------------------------------------
/dist/img/avatar5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/avatar5.png
--------------------------------------------------------------------------------
/dist/img/boxed-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/boxed-bg.jpg
--------------------------------------------------------------------------------
/dist/img/boxed-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/boxed-bg.png
--------------------------------------------------------------------------------
/dist/img/credit/american-express.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/credit/american-express.png
--------------------------------------------------------------------------------
/dist/img/credit/cirrus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/credit/cirrus.png
--------------------------------------------------------------------------------
/dist/img/credit/mastercard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/credit/mastercard.png
--------------------------------------------------------------------------------
/dist/img/credit/mestro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/credit/mestro.png
--------------------------------------------------------------------------------
/dist/img/credit/paypal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/credit/paypal.png
--------------------------------------------------------------------------------
/dist/img/credit/paypal2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/credit/paypal2.png
--------------------------------------------------------------------------------
/dist/img/credit/visa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/credit/visa.png
--------------------------------------------------------------------------------
/dist/img/default-50x50.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/default-50x50.gif
--------------------------------------------------------------------------------
/dist/img/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/icons.png
--------------------------------------------------------------------------------
/dist/img/loading/loading-spinner-blue.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/loading/loading-spinner-blue.gif
--------------------------------------------------------------------------------
/dist/img/loading/loading-spinner-default.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/loading/loading-spinner-default.gif
--------------------------------------------------------------------------------
/dist/img/loading/loading-spinner-grey.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/loading/loading-spinner-grey.gif
--------------------------------------------------------------------------------
/dist/img/loading/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/loading/loading.gif
--------------------------------------------------------------------------------
/dist/img/photo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/photo1.png
--------------------------------------------------------------------------------
/dist/img/photo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/photo2.png
--------------------------------------------------------------------------------
/dist/img/photo3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/photo3.jpg
--------------------------------------------------------------------------------
/dist/img/photo4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/photo4.jpg
--------------------------------------------------------------------------------
/dist/img/user1-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/user1-128x128.jpg
--------------------------------------------------------------------------------
/dist/img/user2-160x160.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/user2-160x160.jpg
--------------------------------------------------------------------------------
/dist/img/user3-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/user3-128x128.jpg
--------------------------------------------------------------------------------
/dist/img/user4-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/user4-128x128.jpg
--------------------------------------------------------------------------------
/dist/img/user5-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/user5-128x128.jpg
--------------------------------------------------------------------------------
/dist/img/user6-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/user6-128x128.jpg
--------------------------------------------------------------------------------
/dist/img/user7-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/user7-128x128.jpg
--------------------------------------------------------------------------------
/dist/img/user8-128x128.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/dist/img/user8-128x128.jpg
--------------------------------------------------------------------------------
/documentation/build/include/browsers.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | AdminLTE supports the following browsers:
4 |
5 | - IE9+
6 | - Firefox (latest)
7 | - Safari (latest)
8 | - Chrome (latest)
9 | - Opera (latest)
10 |
11 | Note: IE9 does not support transitions or animations. The template will function properly but it won't use animations/transitions on IE9.
12 |
13 |
--------------------------------------------------------------------------------
/documentation/build/include/dependencies.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | AdminLTE depends on two main frameworks.
4 | The downloadable package contains both of these libraries, so you don't have to manually download them.
5 |
10 |
11 |
--------------------------------------------------------------------------------
/documentation/build/include/introduction.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | AdminLTE is a popular open source WebApp template for admin dashboards and control panels.
5 | It is a responsive HTML template that is based on the CSS framework Bootstrap 3.
6 | It utilizes all of the Bootstrap components in its design and re-styles many
7 | commonly used plugins to create a consistent design that can be used as a user
8 | interface for backend applications. AdminLTE is based on a modular design, which
9 | allows it to be easily customized and built upon. This documentation will guide you through
10 | installing the template and exploring the various components that are bundled with the template.
11 |
12 |
13 |
--------------------------------------------------------------------------------
/documentation/build/include/license.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | AdminLTE
4 |
5 | AdminLTE is an open source project that is licensed under the MIT license.
6 | This allows you to do pretty much anything you want as long as you include
7 | the copyright in "all copies or substantial portions of the Software."
8 | Attribution is not required (though very much appreciated).
9 |
10 |
11 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "admin-lte",
3 | "version": "2.3.8",
4 | "main": "dist/js/app.min.js",
5 | "repository": {
6 | "type": "git",
7 | "url": "git://github.com/almasaeed2010/AdminLTE.git"
8 | },
9 | "license": "MIT",
10 | "devDependencies": {
11 | "R2": "^1.4.3",
12 | "grunt": "~0.4.5",
13 | "grunt-bootlint": "^0.9.1",
14 | "grunt-contrib-clean": "^0.6.0",
15 | "grunt-contrib-concat": "^1.0.1",
16 | "grunt-contrib-csslint": "^0.5.0",
17 | "grunt-contrib-cssmin": "^0.12.2",
18 | "grunt-contrib-jshint": "^0.11.2",
19 | "grunt-contrib-less": "^0.12.0",
20 | "grunt-contrib-uglify": "^0.7.0",
21 | "grunt-contrib-watch": "~0.6.1",
22 | "grunt-cssjanus": "^0.2.4",
23 | "grunt-image": "^1.0.5",
24 | "grunt-includes": "^0.4.5"
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
2 | For licensing, see LICENSE.md or http://ckeditor.com/license
3 |
4 | cs.js Found: 30 Missing: 0
5 | cy.js Found: 30 Missing: 0
6 | da.js Found: 12 Missing: 18
7 | de.js Found: 30 Missing: 0
8 | el.js Found: 25 Missing: 5
9 | eo.js Found: 30 Missing: 0
10 | fa.js Found: 30 Missing: 0
11 | fi.js Found: 30 Missing: 0
12 | fr.js Found: 30 Missing: 0
13 | gu.js Found: 12 Missing: 18
14 | he.js Found: 30 Missing: 0
15 | it.js Found: 30 Missing: 0
16 | mk.js Found: 5 Missing: 25
17 | nb.js Found: 30 Missing: 0
18 | nl.js Found: 30 Missing: 0
19 | no.js Found: 30 Missing: 0
20 | pt-br.js Found: 30 Missing: 0
21 | ro.js Found: 6 Missing: 24
22 | tr.js Found: 30 Missing: 0
23 | ug.js Found: 27 Missing: 3
24 | vi.js Found: 6 Missing: 24
25 | zh-cn.js Found: 30 Missing: 0
26 |
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/dialog/dialogDefinition.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 |
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/plugins/icons.png
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/icons_hidpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/plugins/icons_hidpi.png
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/image/images/noimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/plugins/image/images/noimage.png
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/link/images/anchor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/plugins/link/images/anchor.png
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/link/images/hidpi/anchor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/plugins/link/images/hidpi/anchor.png
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/magicline/images/icon-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/plugins/magicline/images/icon-rtl.png
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/magicline/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/plugins/magicline/images/icon.png
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/scayt/README.md:
--------------------------------------------------------------------------------
1 | CKEditor SCAYT Plugin
2 | =====================
3 |
4 | This plugin brings Spell Check As You Type (SCAYT) into up to CKEditor 4+.
5 |
6 | SCAYT is a "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution.
7 |
8 | Installation
9 | ------------
10 |
11 | 1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation.
12 | 2. Enable the "scayt" plugin in the CKEditor configuration file (config.js):
13 |
14 | config.extraPlugins = 'scayt';
15 |
16 | That's all. SCAYT will appear on the editor toolbar and will be ready to use.
17 |
18 | License
19 | -------
20 |
21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html).
22 |
23 | See LICENSE.md for more information.
24 |
25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/).
26 |
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
2 | For licensing, see LICENSE.md or http://ckeditor.com/license
3 |
4 | cs.js Found: 118 Missing: 0
5 | cy.js Found: 118 Missing: 0
6 | de.js Found: 118 Missing: 0
7 | el.js Found: 16 Missing: 102
8 | eo.js Found: 118 Missing: 0
9 | et.js Found: 31 Missing: 87
10 | fa.js Found: 24 Missing: 94
11 | fi.js Found: 23 Missing: 95
12 | fr.js Found: 118 Missing: 0
13 | hr.js Found: 23 Missing: 95
14 | it.js Found: 118 Missing: 0
15 | nb.js Found: 118 Missing: 0
16 | nl.js Found: 118 Missing: 0
17 | no.js Found: 118 Missing: 0
18 | tr.js Found: 118 Missing: 0
19 | ug.js Found: 39 Missing: 79
20 | zh-cn.js Found: 118 Missing: 0
21 |
--------------------------------------------------------------------------------
/plugins/ckeditor/plugins/wsc/README.md:
--------------------------------------------------------------------------------
1 | CKEditor WebSpellChecker Plugin
2 | ===============================
3 |
4 | This plugin brings Web Spell Checker (WSC) into CKEditor.
5 |
6 | WSC is "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution.
7 |
8 | Installation
9 | ------------
10 |
11 | 1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation.
12 | 2. Enable the "wsc" plugin in the CKEditor configuration file (config.js):
13 |
14 | config.extraPlugins = 'wsc';
15 |
16 | That's all. WSC will appear on the editor toolbar and will be ready to use.
17 |
18 | License
19 | -------
20 |
21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html).
22 |
23 | See LICENSE.md for more information.
24 |
25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/).
26 |
--------------------------------------------------------------------------------
/plugins/ckeditor/samples/img/github-top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/samples/img/github-top.png
--------------------------------------------------------------------------------
/plugins/ckeditor/samples/img/header-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/samples/img/header-bg.png
--------------------------------------------------------------------------------
/plugins/ckeditor/samples/img/header-separator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/samples/img/header-separator.png
--------------------------------------------------------------------------------
/plugins/ckeditor/samples/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/samples/img/logo.png
--------------------------------------------------------------------------------
/plugins/ckeditor/samples/img/navigation-tip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/samples/img/navigation-tip.png
--------------------------------------------------------------------------------
/plugins/ckeditor/samples/old/assets/inlineall/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/samples/old/assets/inlineall/logo.png
--------------------------------------------------------------------------------
/plugins/ckeditor/samples/old/assets/sample.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/samples/old/assets/sample.jpg
--------------------------------------------------------------------------------
/plugins/ckeditor/samples/old/dialog/assets/my_dialog.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3 | * For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 |
6 | CKEDITOR.dialog.add( 'myDialog', function() {
7 | return {
8 | title: 'My Dialog',
9 | minWidth: 400,
10 | minHeight: 200,
11 | contents: [
12 | {
13 | id: 'tab1',
14 | label: 'First Tab',
15 | title: 'First Tab',
16 | elements: [
17 | {
18 | id: 'input1',
19 | type: 'text',
20 | label: 'Text Field'
21 | },
22 | {
23 | id: 'select1',
24 | type: 'select',
25 | label: 'Select Field',
26 | items: [
27 | [ 'option1', 'value1' ],
28 | [ 'option2', 'value2' ]
29 | ]
30 | }
31 | ]
32 | },
33 | {
34 | id: 'tab2',
35 | label: 'Second Tab',
36 | title: 'Second Tab',
37 | elements: [
38 | {
39 | id: 'button1',
40 | type: 'button',
41 | label: 'Button Field'
42 | }
43 | ]
44 | }
45 | ]
46 | };
47 | } );
48 |
49 |
--------------------------------------------------------------------------------
/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla
--------------------------------------------------------------------------------
/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bswsfhcw/AdminLTE-With-Iframe/0ef20eca3af9c28189eb7a87648ca4798b51875e/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf
--------------------------------------------------------------------------------
/plugins/ckeditor/samples/old/sample_posteddata.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | -------------------------------------------------------------------------------------------
4 | CKEditor - Posted Data
5 |
6 | We are sorry, but your Web server does not support the PHP language used in this script.
7 |
8 | Please note that CKEditor can be used with any other server-side language than just PHP.
9 | To save the content created with CKEditor you need to read the POST data on the server
10 | side and write it to a file or the database.
11 |
12 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
13 | For licensing, see LICENSE.md or http://ckeditor.com/license
14 | -------------------------------------------------------------------------------------------
15 |
16 |