Skip to content

Commit 3753898

Browse files
committed
Roll back 3.x branch, 4.x for stevens things
1 parent 5d050d2 commit 3753898

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+656
-1746
lines changed

Gemfile

-3
This file was deleted.

Gemfile.lock

-18
This file was deleted.

Gruntfile.coffee

-14
This file was deleted.

LICENSE.txt

+339
Large diffs are not rendered by default.

README.md renamed to README.txt

+15-26
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11

2-
## CONTENTS OF THIS FILE
3-
2+
CONTENTS OF THIS FILE
3+
---------------------
44

55
* Installing Kalatheme
66
* Automatic Setup and Subthemes
77
* Manually Installing Bootstrap
88
* Creating a Subtheme
99
* Key Features
1010

11-
### INSTALLING KALATHEME
12-
11+
INSTALLING KALATHEME
12+
--------------------
1313
Unlike other Drupal themes Kalatheme requires some other modules to work
1414
properly. Please verify you have the following before proceeding with
1515
installation. If you fail to do as Kalatheme has requested it will bug
@@ -34,9 +34,9 @@ Some people having troubles using the Kalacustomize plugin were helped by
3434
Patch #5 here: https://drupal.org/node/2024441
3535
which was rolled against Panels 3.3+41-dev
3636

37-
### AUTOMATIC SETUP & SUBTHEMES
38-
39-
Kalatheme is meant to be a base theme that is used to build more powerful
37+
AUTOMATIC SETUP & SUBTHEMES
38+
---------------------------
39+
Kalatheme is meant to be the base theme that is used to build more powerful
4040
subthemes. Subthemes inherit almost all of the propoerties of their base theme
4141
so you can reduce theme clutter and start on the 10th floor. Here is some
4242
documentation on creating a basic subtheme
@@ -47,8 +47,8 @@ subtheme.
4747
https://drupal.org/node/2167149
4848

4949

50-
### MANUALLY INSTALLING BOOTSTRAP
51-
50+
MANUALLY INSTALLING BOOTSTRAP
51+
-----------------------------
5252
Kalatheme doesn't do much without a Bootstrap Library so you are going to need
5353
to shop around for one.
5454

@@ -58,7 +58,7 @@ to shop around for one.
5858
* If you are looking for a free and pre-made custom version of Bootstrap:
5959
http://bootswatch.com/
6060

61-
* If you are looking to roll with a custom version of Bootstrap try out
61+
* If you are looking to rool with a custom version of Bootstrap try out
6262
http://getbootstrap.com/customize/
6363
https://drupal.org/node/2167149
6464

@@ -80,7 +80,7 @@ different themes.
8080
Custom Bootstrap libraries can use a non-standard files scheme so you need to
8181
make sure that your bootstrap directory looks like the following folders and
8282
files.
83-
```
83+
8484
/CURRENT-THEME_bootstrap
8585
/CURRENT-THEME_bootstrap/css
8686
/CURRENT-THEME_bootstrap/css/bootstrap.css
@@ -89,21 +89,18 @@ files.
8989
/CURRENT-THEME_bootstrap/js/
9090
/CURRENT-THEME_bootstrap/js/bootstrap.js
9191
/CURRENT-THEME_bootstrap/js/bootstrap.min.js
92-
```
9392

94-
**IMPORTANT** The only actual requirement here is that either css/bootstrap.css or
93+
IMPORTANT: The only actual requirement here is that either css/bootstrap.css or
9594
css/bootstrap.min.css exist and that they both have some sort of version
9695
information at the top like this:
9796

98-
```js
9997
/*!
10098
* Bootstrap v3.0.0
10199
*
102100
* Copyright 2013 Twitter, Inc
103101
* Licensed under the Apache License v2.0
104102
* http://www.apache.org/licenses/LICENSE-2.0
105103

106-
```
107104
Most themes have this by default and you can use the above as a basis. It is
108105
also worth noting that while you only need boostrap.(min).css for this to "work"
109106
you will likely be disappointed if you don't have the JS and font files as well.
@@ -114,8 +111,8 @@ files in a KalaSUBtheme.
114111
You also do not need to have the minified files to get this to work but they are
115112
highly recommended for better performance.
116113

117-
### KEY FEATURES
118-
114+
KEY FEATURES
115+
------------
119116
* Settings
120117
On the settings page for Kalatheme you can configure how you want the style
121118
plugin to work.
@@ -145,13 +142,5 @@ highly recommended for better performance.
145142
https://drupal.org/node/2167223
146143
https://drupal.org/node/2167225
147144

148-
* Accessibility (Coming soon!)
149-
Kalatheme strives to provide and improve accessibiltiy for all users. Please
150-
report issues with the tag `a11y`.
151-
152-
* Moving to hosting releases on github and Drupal.org.
153-
* Github hosts the source on master and releases on the release branch.
154-
* Post issues ot Drupal.org, but develop against source on github.
155-
156-
* SASS and COMPASS Support
145+
* SASS and COMPASS Support
157146
https://drupal.org/node/2167227

bower.json

-49
This file was deleted.

coffeelint.json

-131
This file was deleted.

scss/_panopoly.scss renamed to css/panopoly.css

+8-12
Original file line numberDiff line numberDiff line change
@@ -465,24 +465,20 @@ ul.panels-ipe-linkbar > li a {
465465
/**
466466
* Navbar Styling
467467
*/
468-
#navbar-link-admin-panopoly:before {
469-
@include sprite($icon-panopoly);
470-
margin-top: 9px;
468+
a#navbar-link-admin-panopoly:before {
469+
background-image: url("../images/icon/icon-panopoly.png");
471470
}
472471

473-
#navbar-link-admin-panopoly.active:before {
474-
@include sprite($icon-panopoly-active);
475-
margin-top: 9px;
472+
a#navbar-link-admin-panopoly.active:before {
473+
background-image: url("../images/icon/icon-panopoly-active.png");
476474
}
477475

478-
#navbar-link-admin-apps:before {
479-
@include sprite($icon-apps);
480-
margin-top: 9px;
476+
a#navbar-link-admin-apps:before {
477+
background-image: url("../images/icon/icon-apps.png");
481478
}
482479

483-
#navbar-link-admin-apps.active:before {
484-
@include sprite($icon-apps-active);
485-
margin-top: 9px;
480+
a#navbar-link-admin-apps.active:before {
481+
background-image: url("../images/icon/icon-apps-active.png");
486482
}
487483

488484
#navbar-administration .edit-shortcuts {

0 commit comments

Comments
 (0)