Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.

Commit 1a50ce6

Browse files
author
Will Jones
committedMar 5, 2015
Way too many changes - temporarily only KSS templated to get things rolling
1 parent b370393 commit 1a50ce6

38 files changed

+2374
-1605
lines changed
 

‎.gitignore

+174
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
# Generic Git Ignore files
2+
.htaccess
3+
roots-child-settings.php
4+
5+
# Deploy scripts
6+
deploy*.php
7+
8+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
9+
10+
*.iml
11+
12+
## Directory-based project format:
13+
.idea/
14+
# if you remove the above rule, at least ignore the following:
15+
16+
# User-specific stuff:
17+
# .idea/workspace.xml
18+
# .idea/tasks.xml
19+
# .idea/dictionaries
20+
21+
# Sensitive or high-churn files:
22+
# .idea/dataSources.ids
23+
# .idea/dataSources.xml
24+
# .idea/sqlDataSources.xml
25+
# .idea/dynamic.xml
26+
# .idea/uiDesigner.xml
27+
28+
# Gradle:
29+
# .idea/gradle.xml
30+
# .idea/libraries
31+
32+
# Mongo Explorer plugin:
33+
# .idea/mongoSettings.xml
34+
35+
## File-based project format:
36+
*.ipr
37+
*.iws
38+
39+
## Plugin-specific files:
40+
41+
# IntelliJ
42+
out/
43+
44+
# mpeltonen/sbt-idea plugin
45+
.idea_modules/
46+
47+
# JIRA plugin
48+
atlassian-ide-plugin.xml
49+
50+
# Crashlytics plugin (for Android Studio and IntelliJ)
51+
com_crashlytics_export_strings.xml
52+
crashlytics.properties
53+
crashlytics-build.properties
54+
55+
# DW Dreamweaver added files
56+
_notes
57+
dwsync.xml
58+
59+
# Eclipse IDE files
60+
*.pydevproject
61+
.metadata
62+
.gradle
63+
bin/
64+
tmp/
65+
*.tmp
66+
*.bak
67+
*.swp
68+
*~.nib
69+
local.properties
70+
.settings/
71+
.loadpath
72+
73+
# Eclipse Core
74+
.project
75+
76+
# External tool builders
77+
.externalToolBuilders/
78+
79+
# Locally stored "Eclipse launch configurations"
80+
*.launch
81+
82+
# CDT-specific
83+
.cproject
84+
85+
# JDT-specific (Eclipse Java Development Tools)
86+
.classpath
87+
88+
# PDT-specific
89+
.buildpath
90+
91+
# sbteclipse plugin
92+
.target
93+
94+
# TeXlipse plugin
95+
.texlipse
96+
97+
## NodeJS ignored files
98+
99+
# Logs
100+
logs
101+
*.log
102+
103+
# Runtime data
104+
pids
105+
*.pid
106+
*.seed
107+
108+
# Directory for instrumented libs generated by jscoverage/JSCover
109+
lib-cov
110+
111+
# Coverage directory used by tools like istanbul
112+
coverage
113+
114+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
115+
.grunt
116+
117+
# node-waf configuration
118+
.lock-wscript
119+
120+
# Compiled binary addons (http://nodejs.org/api/addons.html)
121+
build/Release
122+
123+
# Dependency directory
124+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
125+
node_modules
126+
127+
## Bower Components directory
128+
bower_components
129+
130+
# Project-level settings
131+
/.tgitconfig
132+
133+
## OS X ignored files
134+
.DS_Store
135+
.AppleDouble
136+
.LSOverride
137+
138+
# Icon must end with two \r
139+
Icon
140+
141+
142+
# Thumbnails
143+
._*
144+
145+
# Files that might appear on external disk
146+
.Spotlight-V100
147+
.Trashes
148+
149+
# Directories potentially created on remote AFP share
150+
.AppleDB
151+
.AppleDesktop
152+
Network Trash Folder
153+
Temporary Items
154+
.apdisk
155+
156+
## Windows ignored files
157+
# Windows image file caches
158+
Thumbs.db
159+
ehthumbs.db
160+
161+
# Folder config file
162+
Desktop.ini
163+
164+
# Recycle Bin used on file shares
165+
$RECYCLE.BIN/
166+
167+
# Windows Installer files
168+
*.cab
169+
*.msi
170+
*.msm
171+
*.msp
172+
173+
# Windows shortcuts
174+
*.lnk

‎Gruntfile.js

+38-22
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,20 @@ module.exports = function (grunt) {
1111
' Licensed <%= props.license %> */\n',
1212
// Task configuration
1313
concat: {
14-
index: {
15-
src: 'src/index.html',
16-
dest: 'index.html',
17-
options: {
18-
process: true
19-
}
20-
},
2114
vendor_css: {
2215
src: [
2316
'bower_components/Yamm3/yamm/yamm.css'
2417
],
2518
dest: 'assets/css/vendor.css'
19+
},
20+
vendor_js: {
21+
src: [
22+
'bower_components/angular/angular.min.js',
23+
'bower_components/angular-animate/angular-animate.min.js',
24+
'bower_components/angular-strap/dist/angular-strap.min.js',
25+
'bower_components/angular-strap/dist/angular-strap.tpl.min.js'
26+
],
27+
dest: 'assets/js/vendor.js'
2628
}
2729
},
2830
cssmin: {
@@ -36,12 +38,32 @@ module.exports = function (grunt) {
3638
}]
3739
}
3840
},
41+
clean: {
42+
src: ['src/less/**']
43+
},
3944
copy: {
45+
src: {
46+
files: [{
47+
expand: true,
48+
cwd: 'bower_components/roots-ualib/assets/css/less',
49+
src: ['**'],
50+
dest: 'src/less/',
51+
filter: 'isFile'
52+
}]
53+
},
4054
dist:{
4155
files: [{
42-
src: ['src/assets/img/'],
43-
dest: 'assets/img/',
56+
expand: true,
57+
cwd: 'src/assets',
58+
src: ['**'],
59+
dest: 'assets/',
4460
filter: 'isFile'
61+
},{
62+
src: ['src/index.html'],
63+
dest: 'index.html',
64+
options: {
65+
process: true
66+
}
4567
}]
4668
}
4769
},
@@ -101,20 +123,12 @@ module.exports = function (grunt) {
101123
tasks: ['jshint:lib_test', 'qunit']
102124
}
103125
},
104-
github:{
105-
ualibweb:{
106-
options: {
107-
task: {
108-
type: 'file'
109-
}
110-
},
111-
src: '/repos/ualibweb/ualib-styles/contents/src/styles',
112-
dest: 'src/styles.json'
113-
}
114-
},
115126
exec: {
116127
kss: {
117-
command: 'kss-node src/less styleguide --template src/template --helpers src/template/helpers --custom codetemplate --custom hidemarkup'
128+
command: 'kss-node src/less styleguide --template src/template --helpers src/template/helpers --custom codetemplate --custom hidemarkup --custom icon --custom menublurb'
129+
},
130+
prep: {
131+
command: 'bower update roots-ualib'
118132
}
119133
}
120134
});
@@ -125,8 +139,10 @@ module.exports = function (grunt) {
125139
grunt.loadNpmTasks('grunt-contrib-cssmin');
126140
grunt.loadNpmTasks('grunt-contrib-concat');
127141
grunt.loadNpmTasks('grunt-contrib-copy');
142+
grunt.loadNpmTasks('grunt-contrib-clean');
128143

129144
// Default task
130-
grunt.registerTask('default', ['exec', 'less', 'concat', 'cssmin']);
145+
grunt.registerTask('default', ['prep', 'exec:kss', 'less', 'concat', 'cssmin', 'copy:dist']);
146+
grunt.registerTask('prep', ['exec:prep', 'clean:src', 'copy:src']);
131147
};
132148

‎bower.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@
2929
"dependencies": {
3030
"bootstrap": "~3.3.2",
3131
"fontawesome": "~4.3.0",
32-
"Yamm3": "https://github.com/geedmo/yamm3/archive/master.zip"
32+
"Yamm3": "https://github.com/geedmo/yamm3/archive/master.zip",
33+
"angular-scroll": "~0.6.5",
34+
"angular-strap": "~2.2.0",
35+
"angular-animate": "~1.3.14",
36+
"roots-ualib": "https://github.com/ualibweb/roots-ualib.git"
3337
}
3438
}

‎index.html

+5-190
Original file line numberDiff line numberDiff line change
@@ -7,197 +7,12 @@
77
<head>
88
<meta charset="utf-8">
99
<title>UA Libraries Styleguide</title>
10-
11-
<meta name="description" content="">
12-
<meta name="generator" content="kss-node">
13-
<meta name="viewport" content="width=device-width">
14-
15-
<link rel="stylesheet" href="http://yandex.st/highlightjs/8.0/styles/github.min.css">
16-
<link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,500|Oxygen:400,700,300|Open+Sans|EB+Garamond|Lato:300,400' rel='stylesheet' type='text/css'>
17-
<link rel="stylesheet" href="https://rawgit.com/ualibweb/roots-ualib/master/assets/css/main.min.css">
18-
<link rel="stylesheet" href="styleguide/public/ualib-styleguide.css">
19-
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
20-
<link href="assets/css/vendor.css" rel="stylesheet">
21-
10+
<script>
11+
// temporarily route to kss-node docs until new doc system implemented
12+
window.location.replace("styleguide");
13+
</script>
2214
</head>
23-
<body data-spy="scroll" data-target="#styleguide-nav" data-offset="90">
24-
<header id="header-nav">
25-
<nav class="navbar navbar-static-top navbar-ualib yamm" role="navigation">
26-
<div class="container">
27-
<div class="navbar-header">
28-
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
29-
<span class="sr-only">Toggle navigation</span>
30-
<span class="icon-bar"></span>
31-
<span class="icon-bar"></span>
32-
<span class="icon-bar"></span>
33-
</button>
34-
<a class="navbar-brand" href="index.html" >UA Lib Web Docs</a>
35-
</div>
36-
37-
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
38-
<ul class="nav navbar-nav">
39-
<li class="dropdown yamm-fw open">
40-
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-target="#">Styleguide</a>
41-
<ul class="dropdown-menu">
42-
<li>
43-
<div class="yamm-content ualib-mm">
44-
<div class="row">
45-
<ul class="list-unstyled">
46-
<li class="col-xs-3 menu-col menu-practice-presentation-rooms">
47-
<a href="styleguide/section-style.html">
48-
<h4>Style</h4>
49-
</a>
50-
</li>
51-
<li class="col-xs-3 menu-col menu-practice-presentation-rooms">
52-
<a href="styleguide/section-layout.html">
53-
<h4>Layout</h4>
54-
</a>
55-
</li>
56-
</ul>
57-
</div>
58-
</div>
59-
</li>
60-
</ul>
61-
</li>
62-
</ul>
63-
<ul class="nav navbar-nav navbar-right">
64-
<li>
65-
<a href="https://github.com/ualibweb/ualibweb.github.io" target="_new"><span class="fa fa-github"></span> Github</a>
66-
</li>
67-
<li class="dropdown">
68-
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Quick Links</a>
69-
<ul class="dropdown-menu" role="menu">
70-
<li><a href="http://getbootstrap.com/"><span class="fa fa-fw fa-border">B</span> Bootstrap Docs</a></li>
71-
<li><a href="http://fortawesome.github.io/Font-Awesome/"><span class="fa fa-fw fa-flag"></span> Font Awesome</a></li>
72-
<li><a href="https://www.google.com/fonts"><span class="fa fa-fw fa-paint-brush"></span> Google Fonts</a></li>
73-
<li><a href="http://webaim.org/resources/contrastchecker/"><span class="fa fa-fw fa-adjust"></span> WCAG AA Contrast Checker</a></li>
74-
<li><a href="https://color.adobe.com"><span class="fa fa-fw fa-eyedropper"></span> Adobe Color CC</a></li>
75-
</ul>
76-
</li>
77-
</ul>
78-
</div>
79-
</div>
80-
</nav>
81-
</header>
82-
83-
<div class="wrap">
84-
<div class="content">
85-
<main class="main" role="main">
86-
<div class="jumbotron jumbotron-head">
87-
<div class="container">
88-
<h1>University Libraries Web Docs</h1>
89-
<p>Styleguide, Pattern Library, and resources.</p>
90-
</div>
91-
</div>
92-
<div class="container">
93-
<div class="col-xs-12"> <h1 id="ua-libraries-web-docs">UA Libraries Web Docs</h1>
94-
<p>University Libraries represents the University of Alabama on an academic and institutional level, not just as a library, but also as a repository, archive, computer lab, and location for students to engage both academically and socially, all in support of the university mission. Consequently, the University Libraries Web Site Style Guide will reflect this usage and will help the Libraries provide students with access to information and resources. </p>
95-
<p>Web Services’ top priority is to provide users with easy-to-use, accessible, and “findable,” web content. To achieve this, the following style guide presents the Libraries with rules and best practices, regarding site content, writing methods, text usage, and additional website design elements. </p>
96-
<h2 id="content-strategy">Content Strategy</h2>
97-
<blockquote>
98-
<p>In short, your content has to be awesome. It has to be truly helpful. It cannot be about you.
99-
It has to be about your customers’ wants and needs.</p>
100-
<p>-- <cite>Forbes Magazine</cite></p>
101-
</blockquote>
102-
<p>The User Interface has a strict navigation structure, meaning that new pages or alterations to existing pages will need to fit within this new organizational structure. Pay close attention to link locations, content placement, top-level navigation, and sub-navigation areas. </p>
103-
<h2 id="what-can-i-put-on-the-website-">What can I put on the website?</h2>
104-
<p>Anything that is relevant to your department’s services, public information about your department, or information about specialized areas or content types. Website content must not be suitable for a LibGuide or a Blog. We can create LibGuides to promote library resources or services that are specific to an academic research pursuit. Blogs also detail library resources and services, but done so frequently and require multiple postings. </p>
105-
<h2 id="what-areas-will-i-need-to-talk-to-web-services-about-editing-">What areas will I need to talk to web services about editing?</h2>
106-
<p>We identified 23 content areas where the design is extensively intermixed with the content; changes to these areas will need web services intervention to ensure the integrity of the design. Web Services have based the design of the site on usability and analytics data, and it is important that the content creator not alter them accidentally or arbitrarily. </p>
107-
<p>In no way does Web Services claim responsibility or ownership of the content; content creators retain full ownership and responsibility of their page content. Web Services simply assists in the design, the look, and overall feel of how the page presents the content.</p>
108-
<ul>
109-
<li>Databases (Application)</li>
110-
<li>Maps, Locations, Hours (Application)</li>
111-
<li><p>Directory (Application)</p>
112-
</li>
113-
<li><p>Using the Libraries</p>
114-
</li>
115-
<li>Research Tools </li>
116-
<li>Library Help</li>
117-
<li>News, Events, and Exhibitions</li>
118-
<li>About</li>
119-
<li><p>Libraries &amp; Collections</p>
120-
</li>
121-
<li><p>E-Resources (E-Books, E-Journals)</p>
122-
</li>
123-
<li>Reserves</li>
124-
<li>Interlibrary Borrowing</li>
125-
<li>Sanford Media Center</li>
126-
<li>Computers &amp; Software</li>
127-
<li>How Do I… (Ask A Librarian)</li>
128-
<li>Alabama Digital Humanities Center</li>
129-
<li>Print, Copy, Scan </li>
130-
<li>Circulation Policies (Borrow, Renew, Request)</li>
131-
<li><p>Equipment</p>
132-
</li>
133-
<li><p>Floor Maps</p>
134-
</li>
135-
<li>Classes, Workshops, Tours</li>
136-
<li>Practice Presentation Rooms</li>
137-
<li>Social Media Page</li>
138-
</ul>
139-
<h2 id="what-are-the-rules-for-adding-additional-content-">What are the rules for adding additional content?</h2>
140-
<p>Follow the template, use our styles as per the document, or simply let the elements (</p><p>, </p><div>, etc.) style automatically as we have intended.<p></p>
141-
<h2 id="how-do-i-use-our-styles-and-fonts-how-will-the-elements-appear-and-what-does-each-style-look-like-">How do I use our styles and fonts? How will the elements appear, and what does each style look like?</h2>
142-
<p>Please see the Style Elements section of this document</p>
143-
<h2 id="writing-for-the-web">Writing for the Web</h2>
144-
<p>The University Libraries website is not the final destination for users, but rather a tool to help connect users to the relevant resources and services available at the libraries. Additionally, research has shown that users interact with website content in a very specific way.Important guidelines for writing for the web: </p>
145-
<ul>
146-
<li>Be succinct : write no more than 50% of the text you would have used in a hardcopy publication</li>
147-
<li>Write for scannability : don't require users to read long continuous blocks of text
148-
(<a href="http://www.nngroup.com/articles/be-succinct-writing-for-the-web/">http://www.nngroup.com/articles/be-succinct-writing-for-the-web/</a>)</li>
149-
</ul>
150-
<h3 id="additional-resources-">Additional Resources:</h3>
151-
<ul>
152-
<li><p>Writing for the Web
153-
<a href="http://www.nngroup.com/topic/writing-web/">http://www.nngroup.com/topic/writing-web/</a></p>
154-
</li>
155-
<li><p>Kill the Welcome Mat
156-
<a href="http://www.nngroup.com/articles/blah-blah-text-keep-cut-or-kill/">http://www.nngroup.com/articles/blah-blah-text-keep-cut-or-kill/</a></p>
157-
</li>
158-
<li><p>10 Tips for Good Web Writing
159-
<a href="http://webdesign.about.com/od/writing/a/aa031405.htm">http://webdesign.about.com/od/writing/a/aa031405.htm</a></p>
160-
</li>
161-
</ul>
162-
<h3 id="content">Content</h3>
163-
<ul>
164-
<li>Keep content relevant to topic and goal; your writing should have a goal.</li>
165-
<li>When writing, think of an inverted pyramid - get to the point in the first paragraph, then expand upon it. </li>
166-
<li>One idea per paragraph.</li>
167-
<li>Web pages need to be concise and to-the-point; short, meaty paragraphs are better than long rambling ones. </li>
168-
<li>Use action words.</li>
169-
<li>Tell your readers what to do and avoid the passive voice. Keep the flow of your pages moving.</li>
170-
</ul>
171-
<p><img src="assets/img/pages-flow.jpg" alt="Alt text">
172-
-- Lynda Felder, Peachpit.com</p>
173-
<h3 id="format">Format</h3>
174-
<ul>
175-
<li>Try to use lists instead of paragraphs - lists are easier to scan than paragraphs. </li>
176-
<li>Try to limit list items to 7 words: studies have shown that people can only reliably remember 7-10 things at a time. More than 7 is occasionally acceptable, depending on context. </li>
177-
<li>Sentences should be as concise as you can make them. Use only the words you need to convey essential information. </li>
178-
<li>Include internal sub-headings: sub-headings make the text more scannable. Your readers will move to the section of the document that is most useful for them, and internal cues make it easier for them to achieve this. </li>
179-
<li>Make your links part of the copy: links are another way Web readers scan pages. They stand out from normal text, and provide additional cues as to what the page is about.</li>
180-
</ul>
181-
<h3 id="always">Always</h3>
182-
<ul>
183-
<li>Proofread your work - typos and spelling errors will send people away from your pages. Make sure you proofread everything you post to the Web.</li>
184-
</ul>
185-
</div>
186-
</div>
187-
</div>
188-
</main>
189-
</div>
190-
</div>
191-
192-
<footer>
193-
194-
</footer>
195-
196-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
197-
<script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.2/highlight.min.js"></script>
198-
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
199-
<script src="http://cdnjs.cloudflare.com/ajax/libs/holder/2.4.0/holder.js"></script>
200-
<script>hljs.initHighlightingOnLoad();</script>
15+
<body>
20116

20217
</body>
20318
</html>

‎package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"grunt-contrib-less": "~1.0.0",
2929
"grunt-contrib-cssmin": "~0.12.2",
3030
"grunt-contrib-concat": "~0.5.1",
31-
"grunt-contrib-copy": "~0.8.0"
31+
"grunt-contrib-copy": "~0.8.0",
32+
"grunt-contrib-clean": "~0.6.0"
3233
}
3334
}

‎src/index.html

+5-190
Original file line numberDiff line numberDiff line change
@@ -7,197 +7,12 @@
77
<head>
88
<meta charset="utf-8">
99
<title>UA Libraries Styleguide</title>
10-
11-
<meta name="description" content="">
12-
<meta name="generator" content="kss-node">
13-
<meta name="viewport" content="width=device-width">
14-
15-
<link rel="stylesheet" href="http://yandex.st/highlightjs/8.0/styles/github.min.css">
16-
<link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,500|Oxygen:400,700,300|Open+Sans|EB+Garamond|Lato:300,400' rel='stylesheet' type='text/css'>
17-
<link rel="stylesheet" href="https://rawgit.com/ualibweb/roots-ualib/master/assets/css/main.min.css">
18-
<link rel="stylesheet" href="styleguide/public/ualib-styleguide.css">
19-
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
20-
<link href="assets/css/vendor.css" rel="stylesheet">
21-
10+
<script>
11+
// temporarily route to kss-node docs until new doc system implemented
12+
window.location.replace("styleguide");
13+
</script>
2214
</head>
23-
<body data-spy="scroll" data-target="#styleguide-nav" data-offset="90">
24-
<header id="header-nav">
25-
<nav class="navbar navbar-static-top navbar-ualib yamm" role="navigation">
26-
<div class="container">
27-
<div class="navbar-header">
28-
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
29-
<span class="sr-only">Toggle navigation</span>
30-
<span class="icon-bar"></span>
31-
<span class="icon-bar"></span>
32-
<span class="icon-bar"></span>
33-
</button>
34-
<a class="navbar-brand" href="index.html" >UA Lib Web Docs</a>
35-
</div>
36-
37-
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
38-
<ul class="nav navbar-nav">
39-
<li class="dropdown yamm-fw open">
40-
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-target="#">Styleguide</a>
41-
<ul class="dropdown-menu">
42-
<li>
43-
<div class="yamm-content ualib-mm">
44-
<div class="row">
45-
<ul class="list-unstyled">
46-
<li class="col-xs-3 menu-col menu-practice-presentation-rooms">
47-
<a href="styleguide/section-style.html">
48-
<h4>Style</h4>
49-
</a>
50-
</li>
51-
<li class="col-xs-3 menu-col menu-practice-presentation-rooms">
52-
<a href="styleguide/section-layout.html">
53-
<h4>Layout</h4>
54-
</a>
55-
</li>
56-
</ul>
57-
</div>
58-
</div>
59-
</li>
60-
</ul>
61-
</li>
62-
</ul>
63-
<ul class="nav navbar-nav navbar-right">
64-
<li>
65-
<a href="https://github.com/ualibweb/ualibweb.github.io" target="_new"><span class="fa fa-github"></span> Github</a>
66-
</li>
67-
<li class="dropdown">
68-
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Quick Links</a>
69-
<ul class="dropdown-menu" role="menu">
70-
<li><a href="http://getbootstrap.com/"><span class="fa fa-fw fa-border">B</span> Bootstrap Docs</a></li>
71-
<li><a href="http://fortawesome.github.io/Font-Awesome/"><span class="fa fa-fw fa-flag"></span> Font Awesome</a></li>
72-
<li><a href="https://www.google.com/fonts"><span class="fa fa-fw fa-paint-brush"></span> Google Fonts</a></li>
73-
<li><a href="http://webaim.org/resources/contrastchecker/"><span class="fa fa-fw fa-adjust"></span> WCAG AA Contrast Checker</a></li>
74-
<li><a href="https://color.adobe.com"><span class="fa fa-fw fa-eyedropper"></span> Adobe Color CC</a></li>
75-
</ul>
76-
</li>
77-
</ul>
78-
</div>
79-
</div>
80-
</nav>
81-
</header>
82-
83-
<div class="wrap">
84-
<div class="content">
85-
<main class="main" role="main">
86-
<div class="jumbotron jumbotron-head">
87-
<div class="container">
88-
<h1>University Libraries Web Docs</h1>
89-
<p>Styleguide, Pattern Library, and resources.</p>
90-
</div>
91-
</div>
92-
<div class="container">
93-
<div class="col-xs-12"> <h1 id="ua-libraries-web-docs">UA Libraries Web Docs</h1>
94-
<p>University Libraries represents the University of Alabama on an academic and institutional level, not just as a library, but also as a repository, archive, computer lab, and location for students to engage both academically and socially, all in support of the university mission. Consequently, the University Libraries Web Site Style Guide will reflect this usage and will help the Libraries provide students with access to information and resources. </p>
95-
<p>Web Services’ top priority is to provide users with easy-to-use, accessible, and “findable,” web content. To achieve this, the following style guide presents the Libraries with rules and best practices, regarding site content, writing methods, text usage, and additional website design elements. </p>
96-
<h2 id="content-strategy">Content Strategy</h2>
97-
<blockquote>
98-
<p>In short, your content has to be awesome. It has to be truly helpful. It cannot be about you.
99-
It has to be about your customers’ wants and needs.</p>
100-
<p>-- <cite>Forbes Magazine</cite></p>
101-
</blockquote>
102-
<p>The User Interface has a strict navigation structure, meaning that new pages or alterations to existing pages will need to fit within this new organizational structure. Pay close attention to link locations, content placement, top-level navigation, and sub-navigation areas. </p>
103-
<h2 id="what-can-i-put-on-the-website-">What can I put on the website?</h2>
104-
<p>Anything that is relevant to your department’s services, public information about your department, or information about specialized areas or content types. Website content must not be suitable for a LibGuide or a Blog. We can create LibGuides to promote library resources or services that are specific to an academic research pursuit. Blogs also detail library resources and services, but done so frequently and require multiple postings. </p>
105-
<h2 id="what-areas-will-i-need-to-talk-to-web-services-about-editing-">What areas will I need to talk to web services about editing?</h2>
106-
<p>We identified 23 content areas where the design is extensively intermixed with the content; changes to these areas will need web services intervention to ensure the integrity of the design. Web Services have based the design of the site on usability and analytics data, and it is important that the content creator not alter them accidentally or arbitrarily. </p>
107-
<p>In no way does Web Services claim responsibility or ownership of the content; content creators retain full ownership and responsibility of their page content. Web Services simply assists in the design, the look, and overall feel of how the page presents the content.</p>
108-
<ul>
109-
<li>Databases (Application)</li>
110-
<li>Maps, Locations, Hours (Application)</li>
111-
<li><p>Directory (Application)</p>
112-
</li>
113-
<li><p>Using the Libraries</p>
114-
</li>
115-
<li>Research Tools </li>
116-
<li>Library Help</li>
117-
<li>News, Events, and Exhibitions</li>
118-
<li>About</li>
119-
<li><p>Libraries &amp; Collections</p>
120-
</li>
121-
<li><p>E-Resources (E-Books, E-Journals)</p>
122-
</li>
123-
<li>Reserves</li>
124-
<li>Interlibrary Borrowing</li>
125-
<li>Sanford Media Center</li>
126-
<li>Computers &amp; Software</li>
127-
<li>How Do I… (Ask A Librarian)</li>
128-
<li>Alabama Digital Humanities Center</li>
129-
<li>Print, Copy, Scan </li>
130-
<li>Circulation Policies (Borrow, Renew, Request)</li>
131-
<li><p>Equipment</p>
132-
</li>
133-
<li><p>Floor Maps</p>
134-
</li>
135-
<li>Classes, Workshops, Tours</li>
136-
<li>Practice Presentation Rooms</li>
137-
<li>Social Media Page</li>
138-
</ul>
139-
<h2 id="what-are-the-rules-for-adding-additional-content-">What are the rules for adding additional content?</h2>
140-
<p>Follow the template, use our styles as per the document, or simply let the elements (</p><p>, </p><div>, etc.) style automatically as we have intended.<p></p>
141-
<h2 id="how-do-i-use-our-styles-and-fonts-how-will-the-elements-appear-and-what-does-each-style-look-like-">How do I use our styles and fonts? How will the elements appear, and what does each style look like?</h2>
142-
<p>Please see the Style Elements section of this document</p>
143-
<h2 id="writing-for-the-web">Writing for the Web</h2>
144-
<p>The University Libraries website is not the final destination for users, but rather a tool to help connect users to the relevant resources and services available at the libraries. Additionally, research has shown that users interact with website content in a very specific way.Important guidelines for writing for the web: </p>
145-
<ul>
146-
<li>Be succinct : write no more than 50% of the text you would have used in a hardcopy publication</li>
147-
<li>Write for scannability : don't require users to read long continuous blocks of text
148-
(<a href="http://www.nngroup.com/articles/be-succinct-writing-for-the-web/">http://www.nngroup.com/articles/be-succinct-writing-for-the-web/</a>)</li>
149-
</ul>
150-
<h3 id="additional-resources-">Additional Resources:</h3>
151-
<ul>
152-
<li><p>Writing for the Web
153-
<a href="http://www.nngroup.com/topic/writing-web/">http://www.nngroup.com/topic/writing-web/</a></p>
154-
</li>
155-
<li><p>Kill the Welcome Mat
156-
<a href="http://www.nngroup.com/articles/blah-blah-text-keep-cut-or-kill/">http://www.nngroup.com/articles/blah-blah-text-keep-cut-or-kill/</a></p>
157-
</li>
158-
<li><p>10 Tips for Good Web Writing
159-
<a href="http://webdesign.about.com/od/writing/a/aa031405.htm">http://webdesign.about.com/od/writing/a/aa031405.htm</a></p>
160-
</li>
161-
</ul>
162-
<h3 id="content">Content</h3>
163-
<ul>
164-
<li>Keep content relevant to topic and goal; your writing should have a goal.</li>
165-
<li>When writing, think of an inverted pyramid - get to the point in the first paragraph, then expand upon it. </li>
166-
<li>One idea per paragraph.</li>
167-
<li>Web pages need to be concise and to-the-point; short, meaty paragraphs are better than long rambling ones. </li>
168-
<li>Use action words.</li>
169-
<li>Tell your readers what to do and avoid the passive voice. Keep the flow of your pages moving.</li>
170-
</ul>
171-
<p><img src="assets/img/pages-flow.jpg" alt="Alt text">
172-
-- Lynda Felder, Peachpit.com</p>
173-
<h3 id="format">Format</h3>
174-
<ul>
175-
<li>Try to use lists instead of paragraphs - lists are easier to scan than paragraphs. </li>
176-
<li>Try to limit list items to 7 words: studies have shown that people can only reliably remember 7-10 things at a time. More than 7 is occasionally acceptable, depending on context. </li>
177-
<li>Sentences should be as concise as you can make them. Use only the words you need to convey essential information. </li>
178-
<li>Include internal sub-headings: sub-headings make the text more scannable. Your readers will move to the section of the document that is most useful for them, and internal cues make it easier for them to achieve this. </li>
179-
<li>Make your links part of the copy: links are another way Web readers scan pages. They stand out from normal text, and provide additional cues as to what the page is about.</li>
180-
</ul>
181-
<h3 id="always">Always</h3>
182-
<ul>
183-
<li>Proofread your work - typos and spelling errors will send people away from your pages. Make sure you proofread everything you post to the Web.</li>
184-
</ul>
185-
</div>
186-
</div>
187-
</div>
188-
</main>
189-
</div>
190-
</div>
191-
192-
<footer>
193-
194-
</footer>
195-
196-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
197-
<script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.2/highlight.min.js"></script>
198-
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
199-
<script src="http://cdnjs.cloudflare.com/ajax/libs/holder/2.4.0/holder.js"></script>
200-
<script>hljs.initHighlightingOnLoad();</script>
15+
<body>
20116

20217
</body>
20318
</html>

‎src/less/_bootstrap.less

+11-10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
// Variables
88
@import "_variables";
99

10+
// Mixins: Custom
11+
@import "mixins/link-icon.less";
12+
1013
// Mixins: Utilities
1114
@import "../../../bower_components/bootstrap/less/mixins/hide-text";
1215
@import "../../../bower_components/bootstrap/less/mixins/opacity";
@@ -23,7 +26,7 @@
2326

2427
// Mixins: Components
2528
@import "../../../bower_components/bootstrap/less/mixins/alerts";
26-
@import "../../../bower_components/bootstrap/less/mixins/buttons";
29+
@import "_buttons";
2730
@import "../../../bower_components/bootstrap/less/mixins/panels";
2831
@import "../../../bower_components/bootstrap/less/mixins/pagination";
2932
@import "../../../bower_components/bootstrap/less/mixins/list-group";
@@ -47,24 +50,24 @@
4750
// Reset
4851
@import "../../../bower_components/bootstrap/less/normalize";
4952
@import "../../../bower_components/bootstrap/less/print";
50-
@import "../../../bower_components/bootstrap/less/glyphicons";
53+
@import "_glyphicons";
5154

5255
// Core CSS
53-
@import "../../../bower_components/bootstrap/less/scaffolding";
56+
@import "_scaffolding";
5457
@import "../../../bower_components/bootstrap/less/type";
5558
@import "../../../bower_components/bootstrap/less/code";
56-
@import "../../../bower_components/bootstrap/less/grid";
57-
@import "../../../bower_components/bootstrap/less/tables";
59+
@import "_grid";
60+
@import "_tables";
5861
@import "../../../bower_components/bootstrap/less/forms";
5962
@import "../../../bower_components/bootstrap/less/buttons";
6063

6164
// Components
6265
@import "../../../bower_components/bootstrap/less/component-animations";
63-
@import "../../../bower_components/bootstrap/less/dropdowns";
66+
@import "_dropdowns";
6467
@import "../../../bower_components/bootstrap/less/button-groups";
6568
@import "../../../bower_components/bootstrap/less/input-groups";
6669
@import "../../../bower_components/bootstrap/less/navs";
67-
@import "../../../bower_components/bootstrap/less/navbar";
70+
@import "_navbar";
6871
@import "../../../bower_components/bootstrap/less/breadcrumbs";
6972
@import "../../../bower_components/bootstrap/less/pagination";
7073
@import "../../../bower_components/bootstrap/less/pager";
@@ -89,6 +92,4 @@
8992

9093
// Utility classes
9194
@import "../../../bower_components/bootstrap/less/utilities";
92-
@import "../../../bower_components/bootstrap/less/responsive-utilities";
93-
94-
@import "navbar-ualib";
95+
@import "../../../bower_components/bootstrap/less/responsive-utilities";

‎src/less/_buttons.less

+6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,18 @@
33
// --------------------------------------------------
44

55
// Import default Bootstrap buttons. Overrides, custom variables, and docs below.
6+
@import "../../../bower_components/bootstrap/less/mixins/buttons";
67
@import "../../../bower_components/bootstrap/less/buttons";
78

89
// Buttons
910
//
1011
// <mark>TODO:</mark> Write out description and link to other mentions of button use in docs
1112
//
13+
// Icon: fa-hand-o-up
14+
//
15+
// MenuBlurb:
16+
// Types of buttons available to use on the website
17+
//
1218
// Styleguide style.buttons
1319

1420
// Button Tags

‎src/less/_dropdowns.less

+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
//
2+
// Dropdowns
3+
// --------------------------------------------------
4+
5+
// Import default Bootstrap dropdowns. Overrides, custom variables, and docs below.
6+
@import "../../../bower_components/bootstrap/less/dropdowns";
7+
8+
// Dropdowns
9+
//
10+
// <mark>TODO:</mark> dropdown description, etc.
11+
//
12+
// Markup:
13+
// <div class="dropdown">
14+
// <button class="btn btn-default dropdown-toggle" type="button">
15+
// Dropdown
16+
// </button>
17+
// <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1">
18+
// <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Action</a></li>
19+
// <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Another action</a></li>
20+
// <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Something else here</a></li>
21+
// <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Separated link</a></li>
22+
// </ul>
23+
// </div>
24+
//
25+
// Icon: fa-caret-square-o-down
26+
//
27+
// MenuBlurb:
28+
// Dropdowns for navigation and forms
29+
//
30+
// Styleguide components.dropdowns
31+
32+
.dropdown{
33+
.dropdown-toggle {
34+
position: relative;
35+
padding-right: 30px;
36+
37+
&::before,
38+
&::after {
39+
width: 9px;
40+
-webkit-transform-origin: 50% 50%;
41+
-moz-transform-origin: 50% 50%;
42+
-ms-transform-origin: 50% 50%;
43+
-o-transform-origin: 50% 50%;
44+
transform-origin: 50% 50%;
45+
background: #777;
46+
-webkit-backface-visibility: hidden;
47+
backface-visibility: hidden;
48+
-webkit-transition: width 0.3s, -webkit-transform 0.3s;
49+
-moz-transition: width 0.3s, -moz-transform 0.3s;
50+
transition: width 0.3s, transform 0.3s;
51+
-webkit-box-sizing: border-box;
52+
-moz-box-sizing: border-box;
53+
box-sizing: border-box;
54+
content: '';
55+
position: absolute;
56+
top: 50%;
57+
margin-top: -1px;
58+
display: inline-block;
59+
height: 2px;
60+
}
61+
62+
&::before {
63+
right: 12px;
64+
-webkit-transform: rotate(45deg);
65+
-moz-transform: rotate(45deg);
66+
-ms-transform: rotate(45deg);
67+
-o-transform: rotate(45deg);
68+
transform: rotate(45deg);
69+
}
70+
71+
&::after{
72+
right: 7px;
73+
-webkit-transform: rotate(-45deg);
74+
-moz-transform: rotate(-45deg);
75+
-ms-transform: rotate(-45deg);
76+
-o-transform: rotate(-45deg);
77+
transform: rotate(-45deg);
78+
}
79+
}
80+
81+
.dropdown-menu {
82+
opacity: 0;
83+
border: none;
84+
display: block;
85+
visibility: hidden;
86+
-webkit-transition: opacity .2s .1s, visibility 0s .2s;
87+
-moz-transition: opacity .2s .1s, visibility 0s .2s;
88+
transition: opacity .2s .1s, visibility 0s .2s;
89+
}
90+
}
91+
92+
.open {
93+
.dropdown-toggle{
94+
&::before, &::after{
95+
width: 14px;
96+
}
97+
&::before {
98+
-webkit-transform: translateX(5px) rotate(-45deg);
99+
-moz-transform: translateX(5px) rotate(-45deg);
100+
-ms-transform: translateX(5px) rotate(-45deg);
101+
-o-transform: translateX(5px) rotate(-45deg);
102+
transform: translateX(5px) rotate(-45deg);
103+
}
104+
105+
&::after{
106+
-webkit-transform: rotate(45deg);
107+
-moz-transform: rotate(45deg);
108+
-ms-transform: rotate(45deg);
109+
-o-transform: rotate(45deg);
110+
transform: rotate(45deg);
111+
}
112+
}
113+
114+
.dropdown-menu{
115+
opacity: 1;
116+
visibility: visible;
117+
-webkit-transition: opacity .2s 0s, visibility 0s 0s;
118+
-moz-transition: opacity .2s 0s, visibility 0s 0s;
119+
transition: opacity .2s 0s, visibility 0s 0s;
120+
}
121+
}

‎src/less/_glyphicons.less

+20-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
//
2-
// Glyphicons for Bootstrap and Icons from Font Awesome
2+
// Iconography
33
// -----------------------------------------------------
44

5-
// Import default Bootstrap glyphicons. Overrides, custom variables, and docs below.
6-
@import "../../../bower_components/bootstrap/less/glyphicons";
5+
// Import Fontawesome icons
6+
// *** Bootstrap Glyphicons are not supported
7+
@import "../../../bower_components/fontawesome/less/font-awesome";
8+
9+
// Icons
10+
//
11+
// Users tend to skim through context, looking for subtle clues and markers to determine the intent of a link or
12+
// block of text. **Icons** are a great way to make "skimmable" websites. However, to ensure "skimmability", each icon **must**
13+
// be used in a unique context that defines what that icon means on the website.
14+
// > Each icon should only represent one thing or idea, otherwise the user may feel disoriented or frustrated when they get an unexpected outcome.
15+
//
16+
// <mark>TODO:</mark> Define icons and their use
17+
//
18+
// Icon: fa-info-circle
19+
//
20+
// MenuBlurb:
21+
// Available icons and how to use them
22+
//
23+
// Styleguide style.icons

‎src/less/_grid.less

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
// from phone to desktop to jumbotron! The grid can support a maximum 12 columns of equal size.
1212
// But don't worry, you can any number of columns, as long as they don't go over 12!
1313
//
14+
// Icon: fa-th
15+
//
16+
// MenuBlurb:
17+
// Make responsive layouts using the grid
18+
//
1419
// Styleguide layout.grid
1520

1621
// Grid options

‎src/less/_navbar.less

+270-6
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,282 @@
55
// Import default Bootstrap navbars. Overrides, custom variables, and docs below.
66
@import "../../../bower_components/bootstrap/less/navbar";
77

8+
// Import Yamm3, allowing megamenus within bootstrap dropdowns
9+
@import "../../../bower_components/yamm3/yamm/yamm";
810

11+
// Mega Menu
12+
//
13+
// The mega menu should only appear once, as the website's main header navigation. The mega menu dropdowns can
14+
// support almost any of the website's components: <mark>TODO:</mark> list components appropriate for mega menu. Finish responsive support.
15+
//
16+
// Markup:
17+
// <nav class="navbar navbar-static-top navbar-mega" role="navigation">
18+
// <div class="container-fluid">
19+
// <div class="navbar-header">
20+
// <button type="button" class="navbar-toggle collapsed">
21+
// <span class="sr-only">Toggle navigation</span>
22+
// <span class="fa fa-bars"></span>
23+
// </button>
24+
// <a class="navbar-brand" href="#">
25+
// <img src="holder.js/110x75/text:Logo" class="img-responsive" alt="University of Alabama Libraries"/>
26+
// </a>
27+
// </div>
28+
// <div class="collapse navbar-collapse">
29+
// <ul class="nav navbar-nav">
30+
// <li>
31+
// <a href="#">Link</a>
32+
// </li>
33+
// <li class="dropdown yamm-fw">
34+
// <a href="#" class="dropdown-toggle">Dropdown</a>
35+
// <ul class="dropdown-menu">
36+
// <li>
37+
// <div class="yamm-content">
38+
// <div class="row">
39+
// <div class="col-xs-4">
40+
// <a href="#">
41+
// <span class="fa fa-compass"></span>
42+
// <h4>Action</h4>
43+
// <p>An action that does things very action-ably</p>
44+
// </a>
45+
// </div>
46+
// <div class="col-xs-4">
47+
// <a href="#">
48+
// <span class="fa fa-flask"></span>
49+
// <h4>Another Action</h4>
50+
// <p>Another action that also takes action</p>
51+
// </a>
52+
// </div>
53+
// <div class="col-xs-4">
54+
// <a href="#">
55+
// <span class="fa fa-"></span>
56+
// <h4>Links So Gridly</h4>
57+
// <p>Man, all these links & icons work well in a grid</p>
58+
// </a>
59+
// </div>
60+
// </div>
61+
// </div>
62+
// </li>
63+
// </ul>
64+
// </li>
65+
// </ul>
66+
// <ul class="nav navbar-nav navbar-left">
67+
// <li>
68+
// <a href="#">Left Aligned Navbar</a>
69+
// </li>
70+
// </ul>
71+
// <ul class="nav navbar-nav navbar-right">
72+
// <li>
73+
// <a href="#">Link</a>
74+
// </li>
75+
// <li class="dropdown yamm-fw">
76+
// <a href="#" class="dropdown-toggle">Dropdown</a>
77+
// <ul class="dropdown-menu">
78+
// <li>
79+
// <div class="yamm-content">
80+
// <div class="row">
81+
// <div class="col-sm-4">
82+
// <div class="mm-heading">
83+
// <span class="fa fa-desktop"></span>
84+
// <h4>List Should Never Stack</h4>
85+
// </div>
86+
// <ul>
87+
// <li><a href="#">Action</a></li>
88+
// <li><a href="#">Another action</a></li>
89+
// </ul>
90+
// </div>
91+
// <div class="col-sm-4">
92+
// <div class="mm-heading">
93+
// <span class="fa fa-puzzle-piece"></span>
94+
// <h4>They Should Split By Columns</h4>
95+
// </div>
96+
// <ul>
97+
// <li><a href="#">Separated</a></li>
98+
// <li><a href="#">Link</a></li>
99+
// <li><a href="#">List</a></li>
100+
// </ul>
101+
// </div>
102+
// <div class="col-sm-4">
103+
// <div class="mm-heading">
104+
// <span class="fa fa-spoon"></span>
105+
// <h4>Like This!</h4>
106+
// </div>
107+
// <ul>
108+
// <li><a href="#">Another</a></li>
109+
// <li><a href="#">Separated</a></li>
110+
// <li><a href="#">Link</a></li>
111+
// <li><a href="#">List</a></li>
112+
// </ul>
113+
// </div>
114+
// </div>
115+
// </div>
116+
// </li>
117+
// </ul>
118+
// </li>
119+
// </ul>
120+
// </div>
121+
// </div>
122+
// </nav>
123+
//
124+
// Icon: th-list
125+
//
126+
// MenuBlurb:
127+
// Megamenu for main website navigation
128+
//
129+
// Styleguide components.megamenu
130+
131+
header, .header{
132+
height: 80px;
133+
}
134+
135+
.navbar-mega {
136+
.navbar-default;
137+
.megamenu();
138+
}
139+
140+
.navbar-mega-inverse {
141+
.navbar-inverse;
142+
.megamenu(@gray-lighter, @brand-primary);
143+
}
144+
145+
.navbar-mega, .navbar-mega-inverse {
146+
.yamm;
147+
}
9148

10-
.navbar-meganav {
11-
> .container, >.container-fluid {
12-
.logo {
13-
> img {
14-
display: block;
149+
.megamenu(@color: @brand-primary, @hover-color: @gray-lighter) {
150+
border: none;
151+
margin-bottom: 0;
152+
padding-left: 15px;
153+
padding-right: 15px;
154+
155+
.navbar-brand {
156+
margin-top: 15px;
157+
}
158+
159+
.navbar-nav {
160+
> li {
161+
&.dropdown > a{
162+
padding-right: 40px;
163+
}
164+
165+
> a {
166+
font-size: 16px;
167+
padding: 30px;
168+
169+
&:hover,
170+
&:focus {
171+
&.dropdown-toggle::before,
172+
&.dropdown-toggle::after{
173+
background-color: @hover-color;
174+
}
175+
}
176+
177+
&,
178+
&.active{
179+
&.dropdown-toggle::before,
180+
&.dropdown-toggle::after{
181+
background-color: @hover-color;
182+
}
183+
}
184+
185+
&.dropdown-toggle::before,
186+
&.dropdown-toggle::after {
187+
background-color: @color;
188+
width: 9px;
189+
}
190+
191+
&.dropdown-toggle::before {
192+
right: 20px;
193+
}
194+
195+
&.dropdown-toggle::after{
196+
right: 15px;
197+
}
198+
}
199+
200+
&.open > a{
201+
&::before, &::after{
202+
width: 14px;
203+
}
15204
}
16205
}
17206

18-
> .meganav-nav {
207+
.dropdown-menu{
208+
.yamm-content {
209+
a {
210+
color: @gray-dark;
211+
position: relative;
212+
display: block;
213+
padding: 15px;
214+
215+
& > h4, & > p {
216+
margin-left: 45px;
217+
}
218+
219+
& > h4 {
220+
color: @brand-primary;
221+
margin-bottom: 0;
222+
}
223+
224+
& > .fa {
225+
display: block;
226+
position: absolute;
227+
top: 30px;
228+
font-size: 30px;
229+
color: #555;
230+
}
231+
&:hover,
232+
&:focus {
233+
background-color: darken(@gray-lighter, 5%);
234+
text-decoration: none;
235+
}
236+
}
237+
}
238+
.mm-heading{
239+
min-height: 45px;
240+
display: table;
241+
margin-bottom: 5px;
242+
243+
> .fa, > h4{
244+
color: @brand-primary;
245+
display: table-cell;
246+
vertical-align: middle;
247+
}
248+
249+
> .fa{
250+
font-size: 30px;
251+
color: @gray-dark;
252+
}
253+
254+
> h4{
255+
padding-left: 15px;
256+
color: @brand-primary;
257+
}
258+
}
259+
260+
ul {
261+
list-style-type: none;
262+
padding: 0;
263+
> li {
264+
265+
&:last-child {
266+
border-bottom: none;
267+
}
19268

269+
> a{
270+
color: @gray-dark;
271+
position: relative;
272+
display: block;
273+
padding: 5px;
274+
font-size: 16px;
275+
276+
&:hover,
277+
&:focus {
278+
background-color: darken(@gray-lighter, 5%);
279+
text-decoration: none;
280+
}
281+
}
282+
}
283+
}
20284
}
21285
}
22286
}

‎src/less/_scaffolding.less

+44-48
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,41 @@
55
// Import default Bootstrap scaffolding. Overrides, custom variables, and docs below.
66
@import "../../../bower_components/bootstrap/less/scaffolding";
77

8+
// Images
9+
//
10+
// ###Responsive images
11+
// Images that are children of the `.wrap` content container image are automatically made responsive
12+
//
13+
// <mark>TODO:</mark> Implement method to override responsive images
14+
//
15+
// Icon: fa-image
16+
//
17+
// MenuBlurb:
18+
// Using images in a responsive way
19+
//
20+
// Styleguide style.images
21+
22+
img {
23+
.img-responsive;
24+
}
25+
826
// Links
927
//
1028
// <mark>TODO:</mark> Add details about link appearance and restrictions on text-decorations, etc
1129
//
30+
// Icon: fa-link
31+
//
32+
// MenuBlurb:
33+
// Link types and their decoration
34+
//
1235
// Styleguide style.links
1336

1437
// External & File Links
1538
//
1639
// Links to download files and links to external website are automatically appended with a context icon.
17-
// This icon lets the user know what to expect when they click the link.
40+
// This icon lets the user know what to expect when they click the link. You can remove a link icon manually with the `.no-icon` class.
41+
// Use the `.no-icon` class cautiously - if you're not sure whether to use it, you probably shouldn't.
42+
//
1843
// <mark>TODO:</mark> Define when this differs via parent element context (i.e., in menus, footers, etc.)
1944
//
2045
// Markup: file-external-links.html
@@ -27,56 +52,27 @@
2752
// <a href="excel-file-path.doc">Works for old Word(*.doc) extensions</a>
2853
// <a href="http://codepen.io/ashleynolan/pen/rpjHg">Link to external website</a>
2954
// <a href="https://secure-site-url">Works with HTTPS too!</a>
55+
// <a href="https://secure-site-url" class="no-icon">No link icon.</a>
3056
//
3157
// Styleguide style.links.file-external
32-
/* Font Awesome icon codes */
33-
@icon-ext-link: "\f08e";
34-
@icon-pdf: "\f1c1";
35-
@icon-word: "\f1c2";
36-
@icon-excel: "\f1c3";
37-
@icon-powerpoint: "\f1c4";
3858

39-
a[href^="http"]:after,
40-
a[href^="https"]:after{
41-
.link-icon-after(@icon-ext-link);
42-
}
43-
44-
a[href$=".pdf"]:before{
45-
.link-icon-before(@icon-pdf);
46-
}
47-
a[href$=".doc"]:before,
48-
a[href$=".docx"]:before{
49-
.link-icon-before(@icon-word);
50-
}
51-
a[href$=".xls"]:before,
52-
a[href$=".xlsx"]:before{
53-
.link-icon-before(@icon-excel);
54-
}
59+
.@{content-container-class}{
60+
a:not(.no-icon){
61+
&[href^="http"]:after,
62+
&[href^="https"]:after{
63+
.link-icon-after(@icon-ext-link);
64+
}
5565

56-
a{
57-
.navbar &:before,
58-
.navbar &:after{
59-
display: none;
66+
&[href$=".pdf"]:before{
67+
.link-icon-before(@icon-pdf);
68+
}
69+
&[href$=".doc"]:before,
70+
&[href$=".docx"]:before{
71+
.link-icon-before(@icon-word);
72+
}
73+
&[href$=".xls"]:before,
74+
&[href$=".xlsx"]:before{
75+
.link-icon-before(@icon-excel);
76+
}
6077
}
61-
}
62-
63-
.link-icon(@icon){
64-
@line-height-reduction: floor(@line-height-computed * .20);
65-
content: @icon;
66-
font-family: FontAwesome;
67-
font-size: .80em;
68-
line-height: floor(@line-height-computed - @line-height-reduction);
69-
display: inline-block;
70-
text-decoration: none;
71-
}
72-
73-
.link-icon-before(@icon){
74-
.link-icon(@icon);
75-
font-size: inherit;
76-
padding-right: 5px;
77-
}
78-
79-
.link-icon-after(@icon){
80-
.link-icon(@icon);
81-
padding-left: 5px;
8278
}

‎src/less/_tables.less

+35-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Variables
2+
// Tables
33
// --------------------------------------------------
44

55
// Import default Bootstrap tables. Overrides, custom variables, and docs below.
@@ -26,4 +26,37 @@
2626
// </tbody>
2727
// </table>
2828
//
29-
// Styleguide style.tables
29+
// Icon: fa-tables
30+
//
31+
// MenuBlurb:
32+
// Types of tables and where to use them
33+
//
34+
// Styleguide style.tables
35+
36+
table {
37+
.table;
38+
}
39+
40+
// Striped Rows
41+
//
42+
// Use `.table-striped` class create a striped table with alternating row color
43+
// <em>Only</em> use striped tables for long tables.
44+
//
45+
// Markup: tables-striped.html
46+
//
47+
// CodeTemplate:
48+
// <table class="table-striped">
49+
// <caption>Optional table caption.</caption>
50+
// <thead>
51+
// <tr>
52+
// <th>...</th>
53+
// </tr>
54+
// </thead>
55+
// <tbody>
56+
// <tr>
57+
// <td>...</td>
58+
// </tr>
59+
// </tbody>
60+
// </table>
61+
//
62+
// Styleguide style.tables.striped

‎src/less/_variables.less

+72-77
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
// for slight accents or highlights. [Secondary Colors](#1.2) should only be dominant
1515
// when used in a child/sub theme.
1616
//
17+
// Icon: fa-eyedropper
18+
//
19+
// MenuBlurb:
20+
// Color scheme for the website and how to use them
21+
//
1722
// Styleguide style.color
1823

1924
// Primary Colors
@@ -46,6 +51,11 @@
4651
//
4752
// Use and availability of fonts
4853
//
54+
// Icon: fa-font
55+
//
56+
// MenuBlurb:
57+
// Fonts used for body, heading, and other text elements
58+
//
4959
// Styleguide style.typography
5060

5161
// Body Text
@@ -78,17 +88,72 @@
7888
@headings-font-family: 'Oxygen', sans-serif;
7989
@headings-font-weight: 400;
8090

81-
//== Iconography
82-
// -------------------------
83-
84-
//** Load fonts from this directory.
85-
@icon-font-path: "../../fonts/";
86-
8791
// Components
8892
// -------------------------
8993

9094
@border-radius-large: 4px;
9195

96+
//== Navbar
97+
//
98+
//##
99+
100+
// Basics of a navbar
101+
@navbar-height: 50px;
102+
@navbar-margin-bottom: @line-height-computed;
103+
@navbar-border-radius: @border-radius-base;
104+
@navbar-padding-horizontal: floor((@grid-gutter-width / 2));
105+
@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);
106+
@navbar-collapse-max-height: 340px;
107+
108+
@navbar-default-color: #777;
109+
@navbar-default-bg: @gray-lighter;
110+
@navbar-default-border: darken(@navbar-default-bg, 6.5%);
111+
112+
// Navbar links
113+
@navbar-default-link-color: @brand-primary;
114+
@navbar-default-link-hover-color: @gray-lighter;
115+
@navbar-default-link-hover-bg: @navbar-default-link-color;
116+
@navbar-default-link-active-color: @navbar-default-link-hover-color;
117+
@navbar-default-link-active-bg: @navbar-default-link-hover-bg;
118+
@navbar-default-link-disabled-color: #ccc;
119+
@navbar-default-link-disabled-bg: transparent;
120+
121+
// Navbar brand label
122+
@navbar-default-brand-color: @navbar-default-link-color;
123+
@navbar-default-brand-hover-color: darken(@navbar-default-brand-color, 10%);
124+
@navbar-default-brand-hover-bg: transparent;
125+
126+
// Navbar toggle
127+
@navbar-default-toggle-hover-bg: #ddd;
128+
@navbar-default-toggle-icon-bar-bg: #888;
129+
@navbar-default-toggle-border-color: #ddd;
130+
131+
132+
// Inverted navbar
133+
// Reset inverted navbar basics
134+
@navbar-inverse-color: @gray-lighter;
135+
@navbar-inverse-bg: @brand-primary;
136+
@navbar-inverse-border: darken(@navbar-inverse-bg, 10%);
137+
138+
// Inverted navbar links
139+
@navbar-inverse-link-color: @navbar-inverse-color;
140+
@navbar-inverse-link-hover-color: @navbar-inverse-bg;
141+
@navbar-inverse-link-hover-bg: @navbar-inverse-link-color;
142+
@navbar-inverse-link-active-color: @navbar-inverse-bg;
143+
@navbar-inverse-link-active-bg: @navbar-inverse-color;
144+
@navbar-inverse-link-disabled-color: #e5d8d8;
145+
@navbar-inverse-link-disabled-bg: transparent;
146+
147+
// Inverted navbar brand label
148+
@navbar-inverse-brand-color: @navbar-inverse-link-color;
149+
@navbar-inverse-brand-hover-color: #fff;
150+
@navbar-inverse-brand-hover-bg: transparent;
151+
152+
// Inverted navbar toggle
153+
@navbar-inverse-toggle-hover-bg: lighten(@navbar-inverse-bg, 10%);
154+
@navbar-inverse-toggle-icon-bar-bg: @gray-lighter;
155+
@navbar-inverse-toggle-border-color: transparent;
156+
92157
// Jumbotron
93158
// -------------------------
94159

@@ -103,81 +168,11 @@
103168
@navbar-meganav-height: 80px;
104169
@navbar-meganav-height-sm: 50px;
105170

106-
107-
// Crimson navbar
108-
// Reset crimson navbar basics
109-
@navbar-crimson-color: @gray-lighter;
110-
@navbar-crimson-bg: @brand-primary;
111-
@navbar-crimson-border: darken(@navbar-crimson-bg, 10%);
112-
113-
// Crimson navbar links
114-
@navbar-crimson-link-color: @gray-lighter;
115-
@navbar-crimson-link-hover-color: @navbar-crimson-bg;
116-
@navbar-crimson-link-hover-bg: @navbar-crimson-color;
117-
@navbar-crimson-link-active-color: @navbar-crimson-link-hover-color;
118-
@navbar-crimson-link-active-bg: @navbar-crimson-link-hover-bg;
119-
@navbar-crimson-link-disabled-color: #f2c1c1;
120-
@navbar-crimson-link-disabled-bg: transparent;
121-
122-
// Crimson navbar brand label
123-
@navbar-crimson-brand-color: @navbar-crimson-link-color;
124-
@navbar-crimson-brand-hover-color: #fff;
125-
@navbar-crimson-brand-hover-bg: transparent;
126-
127-
// Crimson navbar toggle
128-
@navbar-crimson-toggle-hover-bg: #333;
129-
@navbar-crimson-toggle-icon-bar-bg: #fff;
130-
@navbar-crimson-toggle-border-color: #333;
131-
132171
// File and External Links (iconography and decorations)
133172
// -------------------------
134173

135174
@icon-ext-link: "\f08e";
136175
@icon-pdf: "\f1c1";
137176
@icon-word: "\f1c2";
138177
@icon-excel: "\f1c3";
139-
@icon-powerpoint: "\f1c4";
140-
141-
// Standard body links
142-
143-
.@{content-container-class}{
144-
> a{
145-
&[href^="http"]:after,
146-
&[href^="https"]:after{
147-
.link-icon-after(@icon-ext-link);
148-
}
149-
150-
&[href$=".pdf"]:before{
151-
.link-icon-before(@icon-pdf);
152-
}
153-
&[href$=".doc"]:before,
154-
&[href$=".docx"]:before{
155-
.link-icon-before(@icon-word);
156-
}
157-
&[href$=".xls"]:before,
158-
&[href$=".xlsx"]:before{
159-
.link-icon-before(@icon-excel);
160-
}
161-
}
162-
}
163-
164-
.link-icon(@icon){
165-
@line-height-reduction: floor(@line-height-computed * .20);
166-
content: @icon;
167-
font-family: FontAwesome;
168-
font-size: .80em;
169-
line-height: floor(@line-height-computed - @line-height-reduction);
170-
display: inline-block;
171-
text-decoration: none;
172-
}
173-
174-
.link-icon-before(@icon){
175-
.link-icon(@icon);
176-
font-size: inherit;
177-
padding-right: 5px;
178-
}
179-
180-
.link-icon-after(@icon){
181-
.link-icon(@icon);
182-
padding-left: 5px;
183-
}
178+
@icon-powerpoint: "\f1c4";

‎src/less/components/meganav/meganav.hbs

-9
This file was deleted.

‎src/less/fontawesome/_font-awesome.less

-17
This file was deleted.

‎src/less/fontawesome/_variables.less

-14
This file was deleted.

‎src/less/layout/grid/grid-options.html

-73
This file was deleted.

‎src/less/layout/layout.less

-7
This file was deleted.

‎src/less/navbar-ualib.less

-327
This file was deleted.

‎src/less/style/buttons/button-tags.hbs

-4
This file was deleted.

‎src/less/style/buttons/button-types.hbs

-20
This file was deleted.

‎src/less/style/color/primary.html

-11
This file was deleted.

‎src/less/style/links/file-external-links.html

-9
This file was deleted.

‎src/less/style/style.less

-7
This file was deleted.

‎src/less/style/tables/tables.html

-61
This file was deleted.

‎src/less/style/typography/body-font.html

-8
This file was deleted.

‎src/less/style/typography/headings.html

-28
This file was deleted.

‎src/less/styleguide.md

-99
This file was deleted.

‎src/template/index.html

+82-27
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!DOCTYPE html>
2-
<!--[if lte IE 6]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
3-
<!--[if IEMobile 7]> <html class="no-js iem7" lang="en"> <![endif]-->
4-
<!--[if (IE 7)&(!IEMobile)]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
5-
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
6-
<!--[if (gte IE 9)|(gt IEMobile 7)]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
2+
<!--[if lte IE 6]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en" ng-app="styleguide"> <![endif]-->
3+
<!--[if IEMobile 7]> <html class="no-js iem7" lang="en" ng-app="styleguide"> <![endif]-->
4+
<!--[if (IE 7)&(!IEMobile)]> <html class="no-js lt-ie9 lt-ie8" lang="en" ng-app="styleguide"> <![endif]-->
5+
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en" ng-app="styleguide"> <![endif]-->
6+
<!--[if (gte IE 9)|(gt IEMobile 7)]><!--> <html class="no-js" lang="en" ng-app="styleguide"> <!--<![endif]-->
77
<head>
88
<meta charset="utf-8">
99
<title>UA Libraries Styleguide</title>
@@ -15,15 +15,16 @@
1515
<link rel="stylesheet" href="http://yandex.st/highlightjs/8.0/styles/github.min.css">
1616
<link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,500|Oxygen:400,700,300|Open+Sans|EB+Garamond|Lato:300,400' rel='stylesheet' type='text/css'>
1717
<link rel="stylesheet" href="https://rawgit.com/ualibweb/roots-ualib/master/assets/css/main.min.css">
18+
<link href="../assets/css/vendor.css" rel="stylesheet">
1819
<link rel="stylesheet" href="public/ualib-styleguide.css">
1920
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
20-
<link href="../assets/css/vendor.css" rel="stylesheet">
21+
<link href="https://rawgit.com/ualibweb/ui-components/master/dist/ui-components.css" rel="stylesheet">
2122
{{{styles}}}
2223
</head>
23-
<body data-spy="scroll" data-target="#styleguide-nav" data-offset="90">
24+
<body>
2425
<header id="header-nav">
25-
<nav class="navbar navbar-static-top navbar-ualib yamm" role="navigation">
26-
<div class="container">
26+
<nav class="navbar navbar-static-top navbar-mega" role="navigation">
27+
<div class="container-fluid">
2728
<div class="navbar-header">
2829
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
2930
<span class="sr-only">Toggle navigation</span>
@@ -36,33 +37,39 @@
3637

3738
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
3839
<ul class="nav navbar-nav">
40+
{{#eachRoot}}
3941
<li class="dropdown yamm-fw">
40-
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-target="#">Styleguide</a>
42+
<a href="#" class="dropdown-toggle">{{header}}</a>
43+
4144
<ul class="dropdown-menu">
4245
<li>
43-
<div class="yamm-content ualib-mm">
46+
<div class="yamm-content">
4447
<div class="row">
45-
<ul class="list-unstyled">
46-
{{#eachRoot}}
47-
<li class="col-xs-3 menu-col menu-practice-presentation-rooms"{{#isRoot @root.rootNumber}} class="active" {{/isRoot}}>
48-
<a href="section-{{reference}}.html">
48+
<ul class="list-unstyled">
49+
{{#eachSection reference}}
50+
{{#ifDepth 2}}
51+
<li class="col-xs-3 menu-col">
52+
<a href="section-{{../../referenceURI}}.html#{{scrollSpyId referenceURI}}">
4953
{{#if icon}}
5054
<span class="fa {{icon}}"></span>
5155
{{/if}}
5256
<h4>{{header}}</h4>
53-
{{#if titleslug}}
54-
<p>{{titleslig}}</p>
57+
{{#if menublurb}}
58+
<p>{{menublurb}}</p>
5559
{{/if}}
5660
</a>
5761
</li>
58-
{{/eachRoot}}
62+
{{/ifDepth}}
63+
{{/eachSection}}
5964
</ul>
65+
6066
</div>
6167
</div>
6268
</li>
6369
</ul>
64-
</li>
6570

71+
</li>
72+
{{/eachRoot}}
6673
</ul>
6774
<ul class="nav navbar-nav navbar-right">
6875
<li>
@@ -90,8 +97,8 @@ <h4>{{header}}</h4>
9097
<div class="jumbotron jumbotron-head">
9198
<div class="container">
9299
{{#if homepage}}
93-
<h1>Styleguide</h1>
94-
<p class="lead">CSS, Components, and Layout details</p>
100+
<h1>University Libraries Web Docs</h1>
101+
<p class="lead">Writing for the web, Styleguide, Website Components, and Resources.</p>
95102
{{else}}
96103
{{#section rootName}}
97104
<h1>{{header}}</h1>
@@ -108,19 +115,19 @@ <h1>{{header}}</h1>
108115
<div class="col-xs-12">{{{homepage}}}</div>
109116
{{else}}
110117
<div class="col-sm-2 col-sm-push-10">
111-
<nav class="fixie-menu">
118+
<nav class="fixie-menu navbar-styleguide">
112119
<ul class="nav nav-submenu">
113120
{{#eachSection rootName}}
114121
{{#ifDepth 2}}
115-
<li>
116-
<a href="#{{scrollSpyId reference}}" du-smooth-scroll du-scrollspy offset="100">
122+
<li data-target="#{{scrollSpyId reference}}" bs-scrollspy>
123+
<a class="menu-item" href="#{{scrollSpyId reference}}">
117124
{{header}}
118125
</a>
119-
<ul class="nav">
126+
<ul class="nav ">
120127
{{#eachSection reference}}
121128
{{#ifDepth 3}}
122-
<li>
123-
<a href="#{{scrollSpyId reference}}" du-smooth-scroll du-scrollspy offset="100">
129+
<li data-target="#{{scrollSpyId reference}}" bs-scrollspy>
130+
<a class="submenu-item" href="#{{scrollSpyId reference}}">
124131
{{header}}
125132
</a>
126133
</li>
@@ -202,7 +209,55 @@ <h1>{{header}}</h1>
202209
<script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.2/highlight.min.js"></script>
203210
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
204211
<script src="http://cdnjs.cloudflare.com/ajax/libs/holder/2.4.0/holder.js"></script>
212+
<script src="../assets/js/vendor.js"></script>
213+
<script src="https://rawgit.com/ualibweb/ui-components/master/dist/ui-components-templates.js"></script>
214+
<script src="https://rawgit.com/ualibweb/ui-components/master/dist/ui-components.js"></script>
205215
<script>hljs.initHighlightingOnLoad();</script>
216+
<script>
217+
angular.module('styleguide', ['ngAnimate', 'mgcrea.ngStrap', 'ualib.ui'])
218+
219+
/*.run(['$rootScope', function($rootScope){
220+
$rootScope.$on('duScrollspy:becameActive', function(event, elm){
221+
/*console.log({
222+
ev: event,
223+
element: elm
224+
})*
225+
})
226+
}])*/
206227

228+
.directive('fixieMenu', ['$window', function($window){
229+
return {
230+
restrict: 'AC',
231+
link: function(scope, elm, attrs){
232+
var width = elm[0].offsetWidth;
233+
var fixed = false;
234+
var fixieClass = 'nav-fixed';
235+
var offset = 350;
236+
angular.element($window).bind('scroll', fixieScroll);
237+
function fixieScroll(ev){
238+
if (this.pageYOffset > offset) {
239+
if (!fixed){
240+
console.log(width);
241+
elm.addClass(fixieClass);
242+
elm.css('width', width+'px');
243+
fixed = true;
244+
}
245+
}
246+
else {
247+
if (fixed){
248+
elm.removeClass(fixieClass);
249+
elm.css('width', 'auto');
250+
fixed = false;
251+
}
252+
}
253+
scope.$apply();
254+
}
255+
scope.$on('$destroy', function(){
256+
angular.element($window).unbind('scroll', fixieScroll);
257+
});
258+
}
259+
}
260+
}]);
261+
</script>
207262
</body>
208263
</html>

‎src/template/public/ualib-styleguide.less

+44-39
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import "../../less/_variables.less";
1+
@import "../../less/_variables";
22
body{
33
position: relative;
44

@@ -19,6 +19,15 @@ hr{
1919
border-color: #ddd;
2020
}
2121

22+
.menu-col:nth-child(4n+1) {
23+
clear: both;
24+
}
25+
26+
.section{
27+
padding-top: 15px;
28+
padding-bottom: 15px;
29+
}
30+
2231
.jumbotron-head{
2332
background-color: #993333;
2433
color: #f6f6f6;
@@ -28,56 +37,52 @@ hr{
2837
}
2938
}
3039

31-
.navbar-inverse .navbar-brand{
32-
color: #f6f6f6;
33-
}
34-
35-
.navbar-right > li > a{
36-
font-size: 18px;
37-
}
38-
39-
.navbar-styleguide{
40-
margin-bottom: 0 !important;
41-
backgroung-color: @gray-lighter !important;
42-
font-family: @headings-font-family;
43-
font-size: 16px;
44-
45-
& a{
46-
color: @brand-primary !important;
47-
}
48-
49-
& .navbar-nav{
50-
font-size: .95em;
51-
}
52-
}
53-
5440

5541
/* styleguide nav */
5642

5743
.nav-fixed{
58-
top: 72px;
44+
top: 30px;
5945
position: fixed;
6046
}
6147

62-
.styleguide-nav > .nav > li > a{
63-
font-family: 'Ubuntu', sans-serif;
64-
}
65-
66-
.styleguide-nav > .nav > li > .styleguide-nav-3{
67-
//padding-left: 30px;
68-
}
69-
70-
.styleguide-nav > .nav-pills {
48+
.nav-submenu {
7149
> li {
7250
// Active state
73-
&.active > a {
74-
&,
75-
&:hover,
76-
&:focus {
51+
a {
52+
color: @brand-primary;
53+
}
54+
55+
&.active,
56+
&:hover,
57+
&:focus {
58+
> a{
7759
color: @nav-pills-active-link-hover-color;
78-
background-color: @link-color;
60+
background-color: @brand-primary;
7961
}
8062
}
63+
64+
&.active > ul{
65+
display: block;
66+
}
67+
68+
> ul {
69+
display: none;
70+
> li{
71+
72+
> a, a:hover {
73+
padding-left: 15px;
74+
border-left: 2px solid @body-bg;
75+
}
76+
&.active,
77+
&:hover,
78+
&:focus {
79+
> a, a:hover, a:active, a:focus {
80+
border-color: @gray-light;
81+
}
82+
}
83+
}
84+
}
85+
8186
}
8287
}
8388

‎index.html

+5-190
Original file line numberDiff line numberDiff line change
@@ -7,197 +7,12 @@
77
<head>
88
<meta charset="utf-8">
99
<title>UA Libraries Styleguide</title>
10-
11-
<meta name="description" content="">
12-
<meta name="generator" content="kss-node">
13-
<meta name="viewport" content="width=device-width">
14-
15-
<link rel="stylesheet" href="http://yandex.st/highlightjs/8.0/styles/github.min.css">
16-
<link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,500|Oxygen:400,700,300|Open+Sans|EB+Garamond|Lato:300,400' rel='stylesheet' type='text/css'>
17-
<link rel="stylesheet" href="https://rawgit.com/ualibweb/roots-ualib/master/assets/css/main.min.css">
18-
<link rel="stylesheet" href="styleguide/public/ualib-styleguide.css">
19-
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
20-
<link href="assets/css/vendor.css" rel="stylesheet">
21-
10+
<script>
11+
// temporarily route to kss-node docs until new doc system implemented
12+
window.location.replace("styleguide");
13+
</script>
2214
</head>
23-
<body data-spy="scroll" data-target="#styleguide-nav" data-offset="90">
24-
<header id="header-nav">
25-
<nav class="navbar navbar-static-top navbar-ualib yamm" role="navigation">
26-
<div class="container">
27-
<div class="navbar-header">
28-
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
29-
<span class="sr-only">Toggle navigation</span>
30-
<span class="icon-bar"></span>
31-
<span class="icon-bar"></span>
32-
<span class="icon-bar"></span>
33-
</button>
34-
<a class="navbar-brand" href="index.html" >UA Lib Web Docs</a>
35-
</div>
36-
37-
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
38-
<ul class="nav navbar-nav">
39-
<li class="dropdown yamm-fw open">
40-
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-target="#">Styleguide</a>
41-
<ul class="dropdown-menu">
42-
<li>
43-
<div class="yamm-content ualib-mm">
44-
<div class="row">
45-
<ul class="list-unstyled">
46-
<li class="col-xs-3 menu-col menu-practice-presentation-rooms">
47-
<a href="styleguide/section-style.html">
48-
<h4>Style</h4>
49-
</a>
50-
</li>
51-
<li class="col-xs-3 menu-col menu-practice-presentation-rooms">
52-
<a href="styleguide/section-layout.html">
53-
<h4>Layout</h4>
54-
</a>
55-
</li>
56-
</ul>
57-
</div>
58-
</div>
59-
</li>
60-
</ul>
61-
</li>
62-
</ul>
63-
<ul class="nav navbar-nav navbar-right">
64-
<li>
65-
<a href="https://github.com/ualibweb/ualibweb.github.io" target="_new"><span class="fa fa-github"></span> Github</a>
66-
</li>
67-
<li class="dropdown">
68-
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Quick Links</a>
69-
<ul class="dropdown-menu" role="menu">
70-
<li><a href="http://getbootstrap.com/"><span class="fa fa-fw fa-border">B</span> Bootstrap Docs</a></li>
71-
<li><a href="http://fortawesome.github.io/Font-Awesome/"><span class="fa fa-fw fa-flag"></span> Font Awesome</a></li>
72-
<li><a href="https://www.google.com/fonts"><span class="fa fa-fw fa-paint-brush"></span> Google Fonts</a></li>
73-
<li><a href="http://webaim.org/resources/contrastchecker/"><span class="fa fa-fw fa-adjust"></span> WCAG AA Contrast Checker</a></li>
74-
<li><a href="https://color.adobe.com"><span class="fa fa-fw fa-eyedropper"></span> Adobe Color CC</a></li>
75-
</ul>
76-
</li>
77-
</ul>
78-
</div>
79-
</div>
80-
</nav>
81-
</header>
82-
83-
<div class="wrap">
84-
<div class="content">
85-
<main class="main" role="main">
86-
<div class="jumbotron jumbotron-head">
87-
<div class="container">
88-
<h1>University Libraries Web Docs</h1>
89-
<p>Styleguide, Pattern Library, and resources.</p>
90-
</div>
91-
</div>
92-
<div class="container">
93-
<div class="col-xs-12"> <h1 id="ua-libraries-web-docs">UA Libraries Web Docs</h1>
94-
<p>University Libraries represents the University of Alabama on an academic and institutional level, not just as a library, but also as a repository, archive, computer lab, and location for students to engage both academically and socially, all in support of the university mission. Consequently, the University Libraries Web Site Style Guide will reflect this usage and will help the Libraries provide students with access to information and resources. </p>
95-
<p>Web Services’ top priority is to provide users with easy-to-use, accessible, and “findable,” web content. To achieve this, the following style guide presents the Libraries with rules and best practices, regarding site content, writing methods, text usage, and additional website design elements. </p>
96-
<h2 id="content-strategy">Content Strategy</h2>
97-
<blockquote>
98-
<p>In short, your content has to be awesome. It has to be truly helpful. It cannot be about you.
99-
It has to be about your customers’ wants and needs.</p>
100-
<p>-- <cite>Forbes Magazine</cite></p>
101-
</blockquote>
102-
<p>The User Interface has a strict navigation structure, meaning that new pages or alterations to existing pages will need to fit within this new organizational structure. Pay close attention to link locations, content placement, top-level navigation, and sub-navigation areas. </p>
103-
<h2 id="what-can-i-put-on-the-website-">What can I put on the website?</h2>
104-
<p>Anything that is relevant to your department’s services, public information about your department, or information about specialized areas or content types. Website content must not be suitable for a LibGuide or a Blog. We can create LibGuides to promote library resources or services that are specific to an academic research pursuit. Blogs also detail library resources and services, but done so frequently and require multiple postings. </p>
105-
<h2 id="what-areas-will-i-need-to-talk-to-web-services-about-editing-">What areas will I need to talk to web services about editing?</h2>
106-
<p>We identified 23 content areas where the design is extensively intermixed with the content; changes to these areas will need web services intervention to ensure the integrity of the design. Web Services have based the design of the site on usability and analytics data, and it is important that the content creator not alter them accidentally or arbitrarily. </p>
107-
<p>In no way does Web Services claim responsibility or ownership of the content; content creators retain full ownership and responsibility of their page content. Web Services simply assists in the design, the look, and overall feel of how the page presents the content.</p>
108-
<ul>
109-
<li>Databases (Application)</li>
110-
<li>Maps, Locations, Hours (Application)</li>
111-
<li><p>Directory (Application)</p>
112-
</li>
113-
<li><p>Using the Libraries</p>
114-
</li>
115-
<li>Research Tools </li>
116-
<li>Library Help</li>
117-
<li>News, Events, and Exhibitions</li>
118-
<li>About</li>
119-
<li><p>Libraries &amp; Collections</p>
120-
</li>
121-
<li><p>E-Resources (E-Books, E-Journals)</p>
122-
</li>
123-
<li>Reserves</li>
124-
<li>Interlibrary Borrowing</li>
125-
<li>Sanford Media Center</li>
126-
<li>Computers &amp; Software</li>
127-
<li>How Do I… (Ask A Librarian)</li>
128-
<li>Alabama Digital Humanities Center</li>
129-
<li>Print, Copy, Scan </li>
130-
<li>Circulation Policies (Borrow, Renew, Request)</li>
131-
<li><p>Equipment</p>
132-
</li>
133-
<li><p>Floor Maps</p>
134-
</li>
135-
<li>Classes, Workshops, Tours</li>
136-
<li>Practice Presentation Rooms</li>
137-
<li>Social Media Page</li>
138-
</ul>
139-
<h2 id="what-are-the-rules-for-adding-additional-content-">What are the rules for adding additional content?</h2>
140-
<p>Follow the template, use our styles as per the document, or simply let the elements (</p><p>, </p><div>, etc.) style automatically as we have intended.<p></p>
141-
<h2 id="how-do-i-use-our-styles-and-fonts-how-will-the-elements-appear-and-what-does-each-style-look-like-">How do I use our styles and fonts? How will the elements appear, and what does each style look like?</h2>
142-
<p>Please see the Style Elements section of this document</p>
143-
<h2 id="writing-for-the-web">Writing for the Web</h2>
144-
<p>The University Libraries website is not the final destination for users, but rather a tool to help connect users to the relevant resources and services available at the libraries. Additionally, research has shown that users interact with website content in a very specific way.Important guidelines for writing for the web: </p>
145-
<ul>
146-
<li>Be succinct : write no more than 50% of the text you would have used in a hardcopy publication</li>
147-
<li>Write for scannability : don't require users to read long continuous blocks of text
148-
(<a href="http://www.nngroup.com/articles/be-succinct-writing-for-the-web/">http://www.nngroup.com/articles/be-succinct-writing-for-the-web/</a>)</li>
149-
</ul>
150-
<h3 id="additional-resources-">Additional Resources:</h3>
151-
<ul>
152-
<li><p>Writing for the Web
153-
<a href="http://www.nngroup.com/topic/writing-web/">http://www.nngroup.com/topic/writing-web/</a></p>
154-
</li>
155-
<li><p>Kill the Welcome Mat
156-
<a href="http://www.nngroup.com/articles/blah-blah-text-keep-cut-or-kill/">http://www.nngroup.com/articles/blah-blah-text-keep-cut-or-kill/</a></p>
157-
</li>
158-
<li><p>10 Tips for Good Web Writing
159-
<a href="http://webdesign.about.com/od/writing/a/aa031405.htm">http://webdesign.about.com/od/writing/a/aa031405.htm</a></p>
160-
</li>
161-
</ul>
162-
<h3 id="content">Content</h3>
163-
<ul>
164-
<li>Keep content relevant to topic and goal; your writing should have a goal.</li>
165-
<li>When writing, think of an inverted pyramid - get to the point in the first paragraph, then expand upon it. </li>
166-
<li>One idea per paragraph.</li>
167-
<li>Web pages need to be concise and to-the-point; short, meaty paragraphs are better than long rambling ones. </li>
168-
<li>Use action words.</li>
169-
<li>Tell your readers what to do and avoid the passive voice. Keep the flow of your pages moving.</li>
170-
</ul>
171-
<p><img src="assets/img/pages-flow.jpg" alt="Alt text">
172-
-- Lynda Felder, Peachpit.com</p>
173-
<h3 id="format">Format</h3>
174-
<ul>
175-
<li>Try to use lists instead of paragraphs - lists are easier to scan than paragraphs. </li>
176-
<li>Try to limit list items to 7 words: studies have shown that people can only reliably remember 7-10 things at a time. More than 7 is occasionally acceptable, depending on context. </li>
177-
<li>Sentences should be as concise as you can make them. Use only the words you need to convey essential information. </li>
178-
<li>Include internal sub-headings: sub-headings make the text more scannable. Your readers will move to the section of the document that is most useful for them, and internal cues make it easier for them to achieve this. </li>
179-
<li>Make your links part of the copy: links are another way Web readers scan pages. They stand out from normal text, and provide additional cues as to what the page is about.</li>
180-
</ul>
181-
<h3 id="always">Always</h3>
182-
<ul>
183-
<li>Proofread your work - typos and spelling errors will send people away from your pages. Make sure you proofread everything you post to the Web.</li>
184-
</ul>
185-
</div>
186-
</div>
187-
</div>
188-
</main>
189-
</div>
190-
</div>
191-
192-
<footer>
193-
194-
</footer>
195-
196-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
197-
<script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.2/highlight.min.js"></script>
198-
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
199-
<script src="http://cdnjs.cloudflare.com/ajax/libs/holder/2.4.0/holder.js"></script>
200-
<script>hljs.initHighlightingOnLoad();</script>
15+
<body>
20116

20217
</body>
20318
</html>

‎package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"grunt-contrib-less": "~1.0.0",
2929
"grunt-contrib-cssmin": "~0.12.2",
3030
"grunt-contrib-concat": "~0.5.1",
31-
"grunt-contrib-copy": "~0.8.0"
31+
"grunt-contrib-copy": "~0.8.0",
32+
"grunt-contrib-clean": "~0.6.0"
3233
}
3334
}

‎src/index.html

+5-190
Original file line numberDiff line numberDiff line change
@@ -7,197 +7,12 @@
77
<head>
88
<meta charset="utf-8">
99
<title>UA Libraries Styleguide</title>
10-
11-
<meta name="description" content="">
12-
<meta name="generator" content="kss-node">
13-
<meta name="viewport" content="width=device-width">
14-
15-
<link rel="stylesheet" href="http://yandex.st/highlightjs/8.0/styles/github.min.css">
16-
<link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,500|Oxygen:400,700,300|Open+Sans|EB+Garamond|Lato:300,400' rel='stylesheet' type='text/css'>
17-
<link rel="stylesheet" href="https://rawgit.com/ualibweb/roots-ualib/master/assets/css/main.min.css">
18-
<link rel="stylesheet" href="styleguide/public/ualib-styleguide.css">
19-
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
20-
<link href="assets/css/vendor.css" rel="stylesheet">
21-
10+
<script>
11+
// temporarily route to kss-node docs until new doc system implemented
12+
window.location.replace("styleguide");
13+
</script>
2214
</head>
23-
<body data-spy="scroll" data-target="#styleguide-nav" data-offset="90">
24-
<header id="header-nav">
25-
<nav class="navbar navbar-static-top navbar-ualib yamm" role="navigation">
26-
<div class="container">
27-
<div class="navbar-header">
28-
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
29-
<span class="sr-only">Toggle navigation</span>
30-
<span class="icon-bar"></span>
31-
<span class="icon-bar"></span>
32-
<span class="icon-bar"></span>
33-
</button>
34-
<a class="navbar-brand" href="index.html" >UA Lib Web Docs</a>
35-
</div>
36-
37-
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
38-
<ul class="nav navbar-nav">
39-
<li class="dropdown yamm-fw open">
40-
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-target="#">Styleguide</a>
41-
<ul class="dropdown-menu">
42-
<li>
43-
<div class="yamm-content ualib-mm">
44-
<div class="row">
45-
<ul class="list-unstyled">
46-
<li class="col-xs-3 menu-col menu-practice-presentation-rooms">
47-
<a href="styleguide/section-style.html">
48-
<h4>Style</h4>
49-
</a>
50-
</li>
51-
<li class="col-xs-3 menu-col menu-practice-presentation-rooms">
52-
<a href="styleguide/section-layout.html">
53-
<h4>Layout</h4>
54-
</a>
55-
</li>
56-
</ul>
57-
</div>
58-
</div>
59-
</li>
60-
</ul>
61-
</li>
62-
</ul>
63-
<ul class="nav navbar-nav navbar-right">
64-
<li>
65-
<a href="https://github.com/ualibweb/ualibweb.github.io" target="_new"><span class="fa fa-github"></span> Github</a>
66-
</li>
67-
<li class="dropdown">
68-
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Quick Links</a>
69-
<ul class="dropdown-menu" role="menu">
70-
<li><a href="http://getbootstrap.com/"><span class="fa fa-fw fa-border">B</span> Bootstrap Docs</a></li>
71-
<li><a href="http://fortawesome.github.io/Font-Awesome/"><span class="fa fa-fw fa-flag"></span> Font Awesome</a></li>
72-
<li><a href="https://www.google.com/fonts"><span class="fa fa-fw fa-paint-brush"></span> Google Fonts</a></li>
73-
<li><a href="http://webaim.org/resources/contrastchecker/"><span class="fa fa-fw fa-adjust"></span> WCAG AA Contrast Checker</a></li>
74-
<li><a href="https://color.adobe.com"><span class="fa fa-fw fa-eyedropper"></span> Adobe Color CC</a></li>
75-
</ul>
76-
</li>
77-
</ul>
78-
</div>
79-
</div>
80-
</nav>
81-
</header>
82-
83-
<div class="wrap">
84-
<div class="content">
85-
<main class="main" role="main">
86-
<div class="jumbotron jumbotron-head">
87-
<div class="container">
88-
<h1>University Libraries Web Docs</h1>
89-
<p>Styleguide, Pattern Library, and resources.</p>
90-
</div>
91-
</div>
92-
<div class="container">
93-
<div class="col-xs-12"> <h1 id="ua-libraries-web-docs">UA Libraries Web Docs</h1>
94-
<p>University Libraries represents the University of Alabama on an academic and institutional level, not just as a library, but also as a repository, archive, computer lab, and location for students to engage both academically and socially, all in support of the university mission. Consequently, the University Libraries Web Site Style Guide will reflect this usage and will help the Libraries provide students with access to information and resources. </p>
95-
<p>Web Services’ top priority is to provide users with easy-to-use, accessible, and “findable,” web content. To achieve this, the following style guide presents the Libraries with rules and best practices, regarding site content, writing methods, text usage, and additional website design elements. </p>
96-
<h2 id="content-strategy">Content Strategy</h2>
97-
<blockquote>
98-
<p>In short, your content has to be awesome. It has to be truly helpful. It cannot be about you.
99-
It has to be about your customers’ wants and needs.</p>
100-
<p>-- <cite>Forbes Magazine</cite></p>
101-
</blockquote>
102-
<p>The User Interface has a strict navigation structure, meaning that new pages or alterations to existing pages will need to fit within this new organizational structure. Pay close attention to link locations, content placement, top-level navigation, and sub-navigation areas. </p>
103-
<h2 id="what-can-i-put-on-the-website-">What can I put on the website?</h2>
104-
<p>Anything that is relevant to your department’s services, public information about your department, or information about specialized areas or content types. Website content must not be suitable for a LibGuide or a Blog. We can create LibGuides to promote library resources or services that are specific to an academic research pursuit. Blogs also detail library resources and services, but done so frequently and require multiple postings. </p>
105-
<h2 id="what-areas-will-i-need-to-talk-to-web-services-about-editing-">What areas will I need to talk to web services about editing?</h2>
106-
<p>We identified 23 content areas where the design is extensively intermixed with the content; changes to these areas will need web services intervention to ensure the integrity of the design. Web Services have based the design of the site on usability and analytics data, and it is important that the content creator not alter them accidentally or arbitrarily. </p>
107-
<p>In no way does Web Services claim responsibility or ownership of the content; content creators retain full ownership and responsibility of their page content. Web Services simply assists in the design, the look, and overall feel of how the page presents the content.</p>
108-
<ul>
109-
<li>Databases (Application)</li>
110-
<li>Maps, Locations, Hours (Application)</li>
111-
<li><p>Directory (Application)</p>
112-
</li>
113-
<li><p>Using the Libraries</p>
114-
</li>
115-
<li>Research Tools </li>
116-
<li>Library Help</li>
117-
<li>News, Events, and Exhibitions</li>
118-
<li>About</li>
119-
<li><p>Libraries &amp; Collections</p>
120-
</li>
121-
<li><p>E-Resources (E-Books, E-Journals)</p>
122-
</li>
123-
<li>Reserves</li>
124-
<li>Interlibrary Borrowing</li>
125-
<li>Sanford Media Center</li>
126-
<li>Computers &amp; Software</li>
127-
<li>How Do I… (Ask A Librarian)</li>
128-
<li>Alabama Digital Humanities Center</li>
129-
<li>Print, Copy, Scan </li>
130-
<li>Circulation Policies (Borrow, Renew, Request)</li>
131-
<li><p>Equipment</p>
132-
</li>
133-
<li><p>Floor Maps</p>
134-
</li>
135-
<li>Classes, Workshops, Tours</li>
136-
<li>Practice Presentation Rooms</li>
137-
<li>Social Media Page</li>
138-
</ul>
139-
<h2 id="what-are-the-rules-for-adding-additional-content-">What are the rules for adding additional content?</h2>
140-
<p>Follow the template, use our styles as per the document, or simply let the elements (</p><p>, </p><div>, etc.) style automatically as we have intended.<p></p>
141-
<h2 id="how-do-i-use-our-styles-and-fonts-how-will-the-elements-appear-and-what-does-each-style-look-like-">How do I use our styles and fonts? How will the elements appear, and what does each style look like?</h2>
142-
<p>Please see the Style Elements section of this document</p>
143-
<h2 id="writing-for-the-web">Writing for the Web</h2>
144-
<p>The University Libraries website is not the final destination for users, but rather a tool to help connect users to the relevant resources and services available at the libraries. Additionally, research has shown that users interact with website content in a very specific way.Important guidelines for writing for the web: </p>
145-
<ul>
146-
<li>Be succinct : write no more than 50% of the text you would have used in a hardcopy publication</li>
147-
<li>Write for scannability : don't require users to read long continuous blocks of text
148-
(<a href="http://www.nngroup.com/articles/be-succinct-writing-for-the-web/">http://www.nngroup.com/articles/be-succinct-writing-for-the-web/</a>)</li>
149-
</ul>
150-
<h3 id="additional-resources-">Additional Resources:</h3>
151-
<ul>
152-
<li><p>Writing for the Web
153-
<a href="http://www.nngroup.com/topic/writing-web/">http://www.nngroup.com/topic/writing-web/</a></p>
154-
</li>
155-
<li><p>Kill the Welcome Mat
156-
<a href="http://www.nngroup.com/articles/blah-blah-text-keep-cut-or-kill/">http://www.nngroup.com/articles/blah-blah-text-keep-cut-or-kill/</a></p>
157-
</li>
158-
<li><p>10 Tips for Good Web Writing
159-
<a href="http://webdesign.about.com/od/writing/a/aa031405.htm">http://webdesign.about.com/od/writing/a/aa031405.htm</a></p>
160-
</li>
161-
</ul>
162-
<h3 id="content">Content</h3>
163-
<ul>
164-
<li>Keep content relevant to topic and goal; your writing should have a goal.</li>
165-
<li>When writing, think of an inverted pyramid - get to the point in the first paragraph, then expand upon it. </li>
166-
<li>One idea per paragraph.</li>
167-
<li>Web pages need to be concise and to-the-point; short, meaty paragraphs are better than long rambling ones. </li>
168-
<li>Use action words.</li>
169-
<li>Tell your readers what to do and avoid the passive voice. Keep the flow of your pages moving.</li>
170-
</ul>
171-
<p><img src="assets/img/pages-flow.jpg" alt="Alt text">
172-
-- Lynda Felder, Peachpit.com</p>
173-
<h3 id="format">Format</h3>
174-
<ul>
175-
<li>Try to use lists instead of paragraphs - lists are easier to scan than paragraphs. </li>
176-
<li>Try to limit list items to 7 words: studies have shown that people can only reliably remember 7-10 things at a time. More than 7 is occasionally acceptable, depending on context. </li>
177-
<li>Sentences should be as concise as you can make them. Use only the words you need to convey essential information. </li>
178-
<li>Include internal sub-headings: sub-headings make the text more scannable. Your readers will move to the section of the document that is most useful for them, and internal cues make it easier for them to achieve this. </li>
179-
<li>Make your links part of the copy: links are another way Web readers scan pages. They stand out from normal text, and provide additional cues as to what the page is about.</li>
180-
</ul>
181-
<h3 id="always">Always</h3>
182-
<ul>
183-
<li>Proofread your work - typos and spelling errors will send people away from your pages. Make sure you proofread everything you post to the Web.</li>
184-
</ul>
185-
</div>
186-
</div>
187-
</div>
188-
</main>
189-
</div>
190-
</div>
191-
192-
<footer>
193-
194-
</footer>
195-
196-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
197-
<script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.2/highlight.min.js"></script>
198-
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
199-
<script src="http://cdnjs.cloudflare.com/ajax/libs/holder/2.4.0/holder.js"></script>
200-
<script>hljs.initHighlightingOnLoad();</script>
15+
<body>
20116

20217
</body>
20318
</html>

‎src/less/_bootstrap.less

+11-10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
// Variables
88
@import "_variables";
99

10+
// Mixins: Custom
11+
@import "mixins/link-icon.less";
12+
1013
// Mixins: Utilities
1114
@import "../../../bower_components/bootstrap/less/mixins/hide-text";
1215
@import "../../../bower_components/bootstrap/less/mixins/opacity";
@@ -23,7 +26,7 @@
2326

2427
// Mixins: Components
2528
@import "../../../bower_components/bootstrap/less/mixins/alerts";
26-
@import "../../../bower_components/bootstrap/less/mixins/buttons";
29+
@import "_buttons";
2730
@import "../../../bower_components/bootstrap/less/mixins/panels";
2831
@import "../../../bower_components/bootstrap/less/mixins/pagination";
2932
@import "../../../bower_components/bootstrap/less/mixins/list-group";
@@ -47,24 +50,24 @@
4750
// Reset
4851
@import "../../../bower_components/bootstrap/less/normalize";
4952
@import "../../../bower_components/bootstrap/less/print";
50-
@import "../../../bower_components/bootstrap/less/glyphicons";
53+
@import "_glyphicons";
5154

5255
// Core CSS
53-
@import "../../../bower_components/bootstrap/less/scaffolding";
56+
@import "_scaffolding";
5457
@import "../../../bower_components/bootstrap/less/type";
5558
@import "../../../bower_components/bootstrap/less/code";
56-
@import "../../../bower_components/bootstrap/less/grid";
57-
@import "../../../bower_components/bootstrap/less/tables";
59+
@import "_grid";
60+
@import "_tables";
5861
@import "../../../bower_components/bootstrap/less/forms";
5962
@import "../../../bower_components/bootstrap/less/buttons";
6063

6164
// Components
6265
@import "../../../bower_components/bootstrap/less/component-animations";
63-
@import "../../../bower_components/bootstrap/less/dropdowns";
66+
@import "_dropdowns";
6467
@import "../../../bower_components/bootstrap/less/button-groups";
6568
@import "../../../bower_components/bootstrap/less/input-groups";
6669
@import "../../../bower_components/bootstrap/less/navs";
67-
@import "../../../bower_components/bootstrap/less/navbar";
70+
@import "_navbar";
6871
@import "../../../bower_components/bootstrap/less/breadcrumbs";
6972
@import "../../../bower_components/bootstrap/less/pagination";
7073
@import "../../../bower_components/bootstrap/less/pager";
@@ -89,6 +92,4 @@
8992

9093
// Utility classes
9194
@import "../../../bower_components/bootstrap/less/utilities";
92-
@import "../../../bower_components/bootstrap/less/responsive-utilities";
93-
94-
@import "navbar-ualib";
95+
@import "../../../bower_components/bootstrap/less/responsive-utilities";

‎src/less/_buttons.less

+6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,18 @@
33
// --------------------------------------------------
44

55
// Import default Bootstrap buttons. Overrides, custom variables, and docs below.
6+
@import "../../../bower_components/bootstrap/less/mixins/buttons";
67
@import "../../../bower_components/bootstrap/less/buttons";
78

89
// Buttons
910
//
1011
// <mark>TODO:</mark> Write out description and link to other mentions of button use in docs
1112
//
13+
// Icon: fa-hand-o-up
14+
//
15+
// MenuBlurb:
16+
// Types of buttons available to use on the website
17+
//
1218
// Styleguide style.buttons
1319

1420
// Button Tags

‎src/less/_dropdowns.less

+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
//
2+
// Dropdowns
3+
// --------------------------------------------------
4+
5+
// Import default Bootstrap dropdowns. Overrides, custom variables, and docs below.
6+
@import "../../../bower_components/bootstrap/less/dropdowns";
7+
8+
// Dropdowns
9+
//
10+
// <mark>TODO:</mark> dropdown description, etc.
11+
//
12+
// Markup:
13+
// <div class="dropdown">
14+
// <button class="btn btn-default dropdown-toggle" type="button">
15+
// Dropdown
16+
// </button>
17+
// <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1">
18+
// <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Action</a></li>
19+
// <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Another action</a></li>
20+
// <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Something else here</a></li>
21+
// <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Separated link</a></li>
22+
// </ul>
23+
// </div>
24+
//
25+
// Icon: fa-caret-square-o-down
26+
//
27+
// MenuBlurb:
28+
// Dropdowns for navigation and forms
29+
//
30+
// Styleguide components.dropdowns
31+
32+
.dropdown{
33+
.dropdown-toggle {
34+
position: relative;
35+
padding-right: 30px;
36+
37+
&::before,
38+
&::after {
39+
width: 9px;
40+
-webkit-transform-origin: 50% 50%;
41+
-moz-transform-origin: 50% 50%;
42+
-ms-transform-origin: 50% 50%;
43+
-o-transform-origin: 50% 50%;
44+
transform-origin: 50% 50%;
45+
background: #777;
46+
-webkit-backface-visibility: hidden;
47+
backface-visibility: hidden;
48+
-webkit-transition: width 0.3s, -webkit-transform 0.3s;
49+
-moz-transition: width 0.3s, -moz-transform 0.3s;
50+
transition: width 0.3s, transform 0.3s;
51+
-webkit-box-sizing: border-box;
52+
-moz-box-sizing: border-box;
53+
box-sizing: border-box;
54+
content: '';
55+
position: absolute;
56+
top: 50%;
57+
margin-top: -1px;
58+
display: inline-block;
59+
height: 2px;
60+
}
61+
62+
&::before {
63+
right: 12px;
64+
-webkit-transform: rotate(45deg);
65+
-moz-transform: rotate(45deg);
66+
-ms-transform: rotate(45deg);
67+
-o-transform: rotate(45deg);
68+
transform: rotate(45deg);
69+
}
70+
71+
&::after{
72+
right: 7px;
73+
-webkit-transform: rotate(-45deg);
74+
-moz-transform: rotate(-45deg);
75+
-ms-transform: rotate(-45deg);
76+
-o-transform: rotate(-45deg);
77+
transform: rotate(-45deg);
78+
}
79+
}
80+
81+
.dropdown-menu {
82+
opacity: 0;
83+
border: none;
84+
display: block;
85+
visibility: hidden;
86+
-webkit-transition: opacity .2s .1s, visibility 0s .2s;
87+
-moz-transition: opacity .2s .1s, visibility 0s .2s;
88+
transition: opacity .2s .1s, visibility 0s .2s;
89+
}
90+
}
91+
92+
.open {
93+
.dropdown-toggle{
94+
&::before, &::after{
95+
width: 14px;
96+
}
97+
&::before {
98+
-webkit-transform: translateX(5px) rotate(-45deg);
99+
-moz-transform: translateX(5px) rotate(-45deg);
100+
-ms-transform: translateX(5px) rotate(-45deg);
101+
-o-transform: translateX(5px) rotate(-45deg);
102+
transform: translateX(5px) rotate(-45deg);
103+
}
104+
105+
&::after{
106+
-webkit-transform: rotate(45deg);
107+
-moz-transform: rotate(45deg);
108+
-ms-transform: rotate(45deg);
109+
-o-transform: rotate(45deg);
110+
transform: rotate(45deg);
111+
}
112+
}
113+
114+
.dropdown-menu{
115+
opacity: 1;
116+
visibility: visible;
117+
-webkit-transition: opacity .2s 0s, visibility 0s 0s;
118+
-moz-transition: opacity .2s 0s, visibility 0s 0s;
119+
transition: opacity .2s 0s, visibility 0s 0s;
120+
}
121+
}

‎src/less/_glyphicons.less

+20-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
//
2-
// Glyphicons for Bootstrap and Icons from Font Awesome
2+
// Iconography
33
// -----------------------------------------------------
44

5-
// Import default Bootstrap glyphicons. Overrides, custom variables, and docs below.
6-
@import "../../../bower_components/bootstrap/less/glyphicons";
5+
// Import Fontawesome icons
6+
// *** Bootstrap Glyphicons are not supported
7+
@import "../../../bower_components/fontawesome/less/font-awesome";
8+
9+
// Icons
10+
//
11+
// Users tend to skim through context, looking for subtle clues and markers to determine the intent of a link or
12+
// block of text. **Icons** are a great way to make "skimmable" websites. However, to ensure "skimmability", each icon **must**
13+
// be used in a unique context that defines what that icon means on the website.
14+
// > Each icon should only represent one thing or idea, otherwise the user may feel disoriented or frustrated when they get an unexpected outcome.
15+
//
16+
// <mark>TODO:</mark> Define icons and their use
17+
//
18+
// Icon: fa-info-circle
19+
//
20+
// MenuBlurb:
21+
// Available icons and how to use them
22+
//
23+
// Styleguide style.icons

‎src/less/_grid.less

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
// from phone to desktop to jumbotron! The grid can support a maximum 12 columns of equal size.
1212
// But don't worry, you can any number of columns, as long as they don't go over 12!
1313
//
14+
// Icon: fa-th
15+
//
16+
// MenuBlurb:
17+
// Make responsive layouts using the grid
18+
//
1419
// Styleguide layout.grid
1520

1621
// Grid options

‎src/less/_navbar.less

+270-6
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,282 @@
55
// Import default Bootstrap navbars. Overrides, custom variables, and docs below.
66
@import "../../../bower_components/bootstrap/less/navbar";
77

8+
// Import Yamm3, allowing megamenus within bootstrap dropdowns
9+
@import "../../../bower_components/yamm3/yamm/yamm";
810

11+
// Mega Menu
12+
//
13+
// The mega menu should only appear once, as the website's main header navigation. The mega menu dropdowns can
14+
// support almost any of the website's components: <mark>TODO:</mark> list components appropriate for mega menu. Finish responsive support.
15+
//
16+
// Markup:
17+
// <nav class="navbar navbar-static-top navbar-mega" role="navigation">
18+
// <div class="container-fluid">
19+
// <div class="navbar-header">
20+
// <button type="button" class="navbar-toggle collapsed">
21+
// <span class="sr-only">Toggle navigation</span>
22+
// <span class="fa fa-bars"></span>
23+
// </button>
24+
// <a class="navbar-brand" href="#">
25+
// <img src="holder.js/110x75/text:Logo" class="img-responsive" alt="University of Alabama Libraries"/>
26+
// </a>
27+
// </div>
28+
// <div class="collapse navbar-collapse">
29+
// <ul class="nav navbar-nav">
30+
// <li>
31+
// <a href="#">Link</a>
32+
// </li>
33+
// <li class="dropdown yamm-fw">
34+
// <a href="#" class="dropdown-toggle">Dropdown</a>
35+
// <ul class="dropdown-menu">
36+
// <li>
37+
// <div class="yamm-content">
38+
// <div class="row">
39+
// <div class="col-xs-4">
40+
// <a href="#">
41+
// <span class="fa fa-compass"></span>
42+
// <h4>Action</h4>
43+
// <p>An action that does things very action-ably</p>
44+
// </a>
45+
// </div>
46+
// <div class="col-xs-4">
47+
// <a href="#">
48+
// <span class="fa fa-flask"></span>
49+
// <h4>Another Action</h4>
50+
// <p>Another action that also takes action</p>
51+
// </a>
52+
// </div>
53+
// <div class="col-xs-4">
54+
// <a href="#">
55+
// <span class="fa fa-"></span>
56+
// <h4>Links So Gridly</h4>
57+
// <p>Man, all these links & icons work well in a grid</p>
58+
// </a>
59+
// </div>
60+
// </div>
61+
// </div>
62+
// </li>
63+
// </ul>
64+
// </li>
65+
// </ul>
66+
// <ul class="nav navbar-nav navbar-left">
67+
// <li>
68+
// <a href="#">Left Aligned Navbar</a>
69+
// </li>
70+
// </ul>
71+
// <ul class="nav navbar-nav navbar-right">
72+
// <li>
73+
// <a href="#">Link</a>
74+
// </li>
75+
// <li class="dropdown yamm-fw">
76+
// <a href="#" class="dropdown-toggle">Dropdown</a>
77+
// <ul class="dropdown-menu">
78+
// <li>
79+
// <div class="yamm-content">
80+
// <div class="row">
81+
// <div class="col-sm-4">
82+
// <div class="mm-heading">
83+
// <span class="fa fa-desktop"></span>
84+
// <h4>List Should Never Stack</h4>
85+
// </div>
86+
// <ul>
87+
// <li><a href="#">Action</a></li>
88+
// <li><a href="#">Another action</a></li>
89+
// </ul>
90+
// </div>
91+
// <div class="col-sm-4">
92+
// <div class="mm-heading">
93+
// <span class="fa fa-puzzle-piece"></span>
94+
// <h4>They Should Split By Columns</h4>
95+
// </div>
96+
// <ul>
97+
// <li><a href="#">Separated</a></li>
98+
// <li><a href="#">Link</a></li>
99+
// <li><a href="#">List</a></li>
100+
// </ul>
101+
// </div>
102+
// <div class="col-sm-4">
103+
// <div class="mm-heading">
104+
// <span class="fa fa-spoon"></span>
105+
// <h4>Like This!</h4>
106+
// </div>
107+
// <ul>
108+
// <li><a href="#">Another</a></li>
109+
// <li><a href="#">Separated</a></li>
110+
// <li><a href="#">Link</a></li>
111+
// <li><a href="#">List</a></li>
112+
// </ul>
113+
// </div>
114+
// </div>
115+
// </div>
116+
// </li>
117+
// </ul>
118+
// </li>
119+
// </ul>
120+
// </div>
121+
// </div>
122+
// </nav>
123+
//
124+
// Icon: th-list
125+
//
126+
// MenuBlurb:
127+
// Megamenu for main website navigation
128+
//
129+
// Styleguide components.megamenu
130+
131+
header, .header{
132+
height: 80px;
133+
}
134+
135+
.navbar-mega {
136+
.navbar-default;
137+
.megamenu();
138+
}
139+
140+
.navbar-mega-inverse {
141+
.navbar-inverse;
142+
.megamenu(@gray-lighter, @brand-primary);
143+
}
144+
145+
.navbar-mega, .navbar-mega-inverse {
146+
.yamm;
147+
}
9148

10-
.navbar-meganav {
11-
> .container, >.container-fluid {
12-
.logo {
13-
> img {
14-
display: block;
149+
.megamenu(@color: @brand-primary, @hover-color: @gray-lighter) {
150+
border: none;
151+
margin-bottom: 0;
152+
padding-left: 15px;
153+
padding-right: 15px;
154+
155+
.navbar-brand {
156+
margin-top: 15px;
157+
}
158+
159+
.navbar-nav {
160+
> li {
161+
&.dropdown > a{
162+
padding-right: 40px;
163+
}
164+
165+
> a {
166+
font-size: 16px;
167+
padding: 30px;
168+
169+
&:hover,
170+
&:focus {
171+
&.dropdown-toggle::before,
172+
&.dropdown-toggle::after{
173+
background-color: @hover-color;
174+
}
175+
}
176+
177+
&,
178+
&.active{
179+
&.dropdown-toggle::before,
180+
&.dropdown-toggle::after{
181+
background-color: @hover-color;
182+
}
183+
}
184+
185+
&.dropdown-toggle::before,
186+
&.dropdown-toggle::after {
187+
background-color: @color;
188+
width: 9px;
189+
}
190+
191+
&.dropdown-toggle::before {
192+
right: 20px;
193+
}
194+
195+
&.dropdown-toggle::after{
196+
right: 15px;
197+
}
198+
}
199+
200+
&.open > a{
201+
&::before, &::after{
202+
width: 14px;
203+
}
15204
}
16205
}
17206

18-
> .meganav-nav {
207+
.dropdown-menu{
208+
.yamm-content {
209+
a {
210+
color: @gray-dark;
211+
position: relative;
212+
display: block;
213+
padding: 15px;
214+
215+
& > h4, & > p {
216+
margin-left: 45px;
217+
}
218+
219+
& > h4 {
220+
color: @brand-primary;
221+
margin-bottom: 0;
222+
}
223+
224+
& > .fa {
225+
display: block;
226+
position: absolute;
227+
top: 30px;
228+
font-size: 30px;
229+
color: #555;
230+
}
231+
&:hover,
232+
&:focus {
233+
background-color: darken(@gray-lighter, 5%);
234+
text-decoration: none;
235+
}
236+
}
237+
}
238+
.mm-heading{
239+
min-height: 45px;
240+
display: table;
241+
margin-bottom: 5px;
242+
243+
> .fa, > h4{
244+
color: @brand-primary;
245+
display: table-cell;
246+
vertical-align: middle;
247+
}
248+
249+
> .fa{
250+
font-size: 30px;
251+
color: @gray-dark;
252+
}
253+
254+
> h4{
255+
padding-left: 15px;
256+
color: @brand-primary;
257+
}
258+
}
259+
260+
ul {
261+
list-style-type: none;
262+
padding: 0;
263+
> li {
264+
265+
&:last-child {
266+
border-bottom: none;
267+
}
19268

269+
> a{
270+
color: @gray-dark;
271+
position: relative;
272+
display: block;
273+
padding: 5px;
274+
font-size: 16px;
275+
276+
&:hover,
277+
&:focus {
278+
background-color: darken(@gray-lighter, 5%);
279+
text-decoration: none;
280+
}
281+
}
282+
}
283+
}
20284
}
21285
}
22286
}

‎src/less/_scaffolding.less

+44-48
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,41 @@
55
// Import default Bootstrap scaffolding. Overrides, custom variables, and docs below.
66
@import "../../../bower_components/bootstrap/less/scaffolding";
77

8+
// Images
9+
//
10+
// ###Responsive images
11+
// Images that are children of the `.wrap` content container image are automatically made responsive
12+
//
13+
// <mark>TODO:</mark> Implement method to override responsive images
14+
//
15+
// Icon: fa-image
16+
//
17+
// MenuBlurb:
18+
// Using images in a responsive way
19+
//
20+
// Styleguide style.images
21+
22+
img {
23+
.img-responsive;
24+
}
25+
826
// Links
927
//
1028
// <mark>TODO:</mark> Add details about link appearance and restrictions on text-decorations, etc
1129
//
30+
// Icon: fa-link
31+
//
32+
// MenuBlurb:
33+
// Link types and their decoration
34+
//
1235
// Styleguide style.links
1336

1437
// External & File Links
1538
//
1639
// Links to download files and links to external website are automatically appended with a context icon.
17-
// This icon lets the user know what to expect when they click the link.
40+
// This icon lets the user know what to expect when they click the link. You can remove a link icon manually with the `.no-icon` class.
41+
// Use the `.no-icon` class cautiously - if you're not sure whether to use it, you probably shouldn't.
42+
//
1843
// <mark>TODO:</mark> Define when this differs via parent element context (i.e., in menus, footers, etc.)
1944
//
2045
// Markup: file-external-links.html
@@ -27,56 +52,27 @@
2752
// <a href="excel-file-path.doc">Works for old Word(*.doc) extensions</a>
2853
// <a href="http://codepen.io/ashleynolan/pen/rpjHg">Link to external website</a>
2954
// <a href="https://secure-site-url">Works with HTTPS too!</a>
55+
// <a href="https://secure-site-url" class="no-icon">No link icon.</a>
3056
//
3157
// Styleguide style.links.file-external
32-
/* Font Awesome icon codes */
33-
@icon-ext-link: "\f08e";
34-
@icon-pdf: "\f1c1";
35-
@icon-word: "\f1c2";
36-
@icon-excel: "\f1c3";
37-
@icon-powerpoint: "\f1c4";
3858

39-
a[href^="http"]:after,
40-
a[href^="https"]:after{
41-
.link-icon-after(@icon-ext-link);
42-
}
43-
44-
a[href$=".pdf"]:before{
45-
.link-icon-before(@icon-pdf);
46-
}
47-
a[href$=".doc"]:before,
48-
a[href$=".docx"]:before{
49-
.link-icon-before(@icon-word);
50-
}
51-
a[href$=".xls"]:before,
52-
a[href$=".xlsx"]:before{
53-
.link-icon-before(@icon-excel);
54-
}
59+
.@{content-container-class}{
60+
a:not(.no-icon){
61+
&[href^="http"]:after,
62+
&[href^="https"]:after{
63+
.link-icon-after(@icon-ext-link);
64+
}
5565

56-
a{
57-
.navbar &:before,
58-
.navbar &:after{
59-
display: none;
66+
&[href$=".pdf"]:before{
67+
.link-icon-before(@icon-pdf);
68+
}
69+
&[href$=".doc"]:before,
70+
&[href$=".docx"]:before{
71+
.link-icon-before(@icon-word);
72+
}
73+
&[href$=".xls"]:before,
74+
&[href$=".xlsx"]:before{
75+
.link-icon-before(@icon-excel);
76+
}
6077
}
61-
}
62-
63-
.link-icon(@icon){
64-
@line-height-reduction: floor(@line-height-computed * .20);
65-
content: @icon;
66-
font-family: FontAwesome;
67-
font-size: .80em;
68-
line-height: floor(@line-height-computed - @line-height-reduction);
69-
display: inline-block;
70-
text-decoration: none;
71-
}
72-
73-
.link-icon-before(@icon){
74-
.link-icon(@icon);
75-
font-size: inherit;
76-
padding-right: 5px;
77-
}
78-
79-
.link-icon-after(@icon){
80-
.link-icon(@icon);
81-
padding-left: 5px;
8278
}

‎src/less/_tables.less

+35-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Variables
2+
// Tables
33
// --------------------------------------------------
44

55
// Import default Bootstrap tables. Overrides, custom variables, and docs below.
@@ -26,4 +26,37 @@
2626
// </tbody>
2727
// </table>
2828
//
29-
// Styleguide style.tables
29+
// Icon: fa-tables
30+
//
31+
// MenuBlurb:
32+
// Types of tables and where to use them
33+
//
34+
// Styleguide style.tables
35+
36+
table {
37+
.table;
38+
}
39+
40+
// Striped Rows
41+
//
42+
// Use `.table-striped` class create a striped table with alternating row color
43+
// <em>Only</em> use striped tables for long tables.
44+
//
45+
// Markup: tables-striped.html
46+
//
47+
// CodeTemplate:
48+
// <table class="table-striped">
49+
// <caption>Optional table caption.</caption>
50+
// <thead>
51+
// <tr>
52+
// <th>...</th>
53+
// </tr>
54+
// </thead>
55+
// <tbody>
56+
// <tr>
57+
// <td>...</td>
58+
// </tr>
59+
// </tbody>
60+
// </table>
61+
//
62+
// Styleguide style.tables.striped

‎src/less/_variables.less

+72-77
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
// for slight accents or highlights. [Secondary Colors](#1.2) should only be dominant
1515
// when used in a child/sub theme.
1616
//
17+
// Icon: fa-eyedropper
18+
//
19+
// MenuBlurb:
20+
// Color scheme for the website and how to use them
21+
//
1722
// Styleguide style.color
1823

1924
// Primary Colors
@@ -46,6 +51,11 @@
4651
//
4752
// Use and availability of fonts
4853
//
54+
// Icon: fa-font
55+
//
56+
// MenuBlurb:
57+
// Fonts used for body, heading, and other text elements
58+
//
4959
// Styleguide style.typography
5060

5161
// Body Text
@@ -78,17 +88,72 @@
7888
@headings-font-family: 'Oxygen', sans-serif;
7989
@headings-font-weight: 400;
8090

81-
//== Iconography
82-
// -------------------------
83-
84-
//** Load fonts from this directory.
85-
@icon-font-path: "../../fonts/";
86-
8791
// Components
8892
// -------------------------
8993

9094
@border-radius-large: 4px;
9195

96+
//== Navbar
97+
//
98+
//##
99+
100+
// Basics of a navbar
101+
@navbar-height: 50px;
102+
@navbar-margin-bottom: @line-height-computed;
103+
@navbar-border-radius: @border-radius-base;
104+
@navbar-padding-horizontal: floor((@grid-gutter-width / 2));
105+
@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);
106+
@navbar-collapse-max-height: 340px;
107+
108+
@navbar-default-color: #777;
109+
@navbar-default-bg: @gray-lighter;
110+
@navbar-default-border: darken(@navbar-default-bg, 6.5%);
111+
112+
// Navbar links
113+
@navbar-default-link-color: @brand-primary;
114+
@navbar-default-link-hover-color: @gray-lighter;
115+
@navbar-default-link-hover-bg: @navbar-default-link-color;
116+
@navbar-default-link-active-color: @navbar-default-link-hover-color;
117+
@navbar-default-link-active-bg: @navbar-default-link-hover-bg;
118+
@navbar-default-link-disabled-color: #ccc;
119+
@navbar-default-link-disabled-bg: transparent;
120+
121+
// Navbar brand label
122+
@navbar-default-brand-color: @navbar-default-link-color;
123+
@navbar-default-brand-hover-color: darken(@navbar-default-brand-color, 10%);
124+
@navbar-default-brand-hover-bg: transparent;
125+
126+
// Navbar toggle
127+
@navbar-default-toggle-hover-bg: #ddd;
128+
@navbar-default-toggle-icon-bar-bg: #888;
129+
@navbar-default-toggle-border-color: #ddd;
130+
131+
132+
// Inverted navbar
133+
// Reset inverted navbar basics
134+
@navbar-inverse-color: @gray-lighter;
135+
@navbar-inverse-bg: @brand-primary;
136+
@navbar-inverse-border: darken(@navbar-inverse-bg, 10%);
137+
138+
// Inverted navbar links
139+
@navbar-inverse-link-color: @navbar-inverse-color;
140+
@navbar-inverse-link-hover-color: @navbar-inverse-bg;
141+
@navbar-inverse-link-hover-bg: @navbar-inverse-link-color;
142+
@navbar-inverse-link-active-color: @navbar-inverse-bg;
143+
@navbar-inverse-link-active-bg: @navbar-inverse-color;
144+
@navbar-inverse-link-disabled-color: #e5d8d8;
145+
@navbar-inverse-link-disabled-bg: transparent;
146+
147+
// Inverted navbar brand label
148+
@navbar-inverse-brand-color: @navbar-inverse-link-color;
149+
@navbar-inverse-brand-hover-color: #fff;
150+
@navbar-inverse-brand-hover-bg: transparent;
151+
152+
// Inverted navbar toggle
153+
@navbar-inverse-toggle-hover-bg: lighten(@navbar-inverse-bg, 10%);
154+
@navbar-inverse-toggle-icon-bar-bg: @gray-lighter;
155+
@navbar-inverse-toggle-border-color: transparent;
156+
92157
// Jumbotron
93158
// -------------------------
94159

@@ -103,81 +168,11 @@
103168
@navbar-meganav-height: 80px;
104169
@navbar-meganav-height-sm: 50px;
105170

106-
107-
// Crimson navbar
108-
// Reset crimson navbar basics
109-
@navbar-crimson-color: @gray-lighter;
110-
@navbar-crimson-bg: @brand-primary;
111-
@navbar-crimson-border: darken(@navbar-crimson-bg, 10%);
112-
113-
// Crimson navbar links
114-
@navbar-crimson-link-color: @gray-lighter;
115-
@navbar-crimson-link-hover-color: @navbar-crimson-bg;
116-
@navbar-crimson-link-hover-bg: @navbar-crimson-color;
117-
@navbar-crimson-link-active-color: @navbar-crimson-link-hover-color;
118-
@navbar-crimson-link-active-bg: @navbar-crimson-link-hover-bg;
119-
@navbar-crimson-link-disabled-color: #f2c1c1;
120-
@navbar-crimson-link-disabled-bg: transparent;
121-
122-
// Crimson navbar brand label
123-
@navbar-crimson-brand-color: @navbar-crimson-link-color;
124-
@navbar-crimson-brand-hover-color: #fff;
125-
@navbar-crimson-brand-hover-bg: transparent;
126-
127-
// Crimson navbar toggle
128-
@navbar-crimson-toggle-hover-bg: #333;
129-
@navbar-crimson-toggle-icon-bar-bg: #fff;
130-
@navbar-crimson-toggle-border-color: #333;
131-
132171
// File and External Links (iconography and decorations)
133172
// -------------------------
134173

135174
@icon-ext-link: "\f08e";
136175
@icon-pdf: "\f1c1";
137176
@icon-word: "\f1c2";
138177
@icon-excel: "\f1c3";
139-
@icon-powerpoint: "\f1c4";
140-
141-
// Standard body links
142-
143-
.@{content-container-class}{
144-
> a{
145-
&[href^="http"]:after,
146-
&[href^="https"]:after{
147-
.link-icon-after(@icon-ext-link);
148-
}
149-
150-
&[href$=".pdf"]:before{
151-
.link-icon-before(@icon-pdf);
152-
}
153-
&[href$=".doc"]:before,
154-
&[href$=".docx"]:before{
155-
.link-icon-before(@icon-word);
156-
}
157-
&[href$=".xls"]:before,
158-
&[href$=".xlsx"]:before{
159-
.link-icon-before(@icon-excel);
160-
}
161-
}
162-
}
163-
164-
.link-icon(@icon){
165-
@line-height-reduction: floor(@line-height-computed * .20);
166-
content: @icon;
167-
font-family: FontAwesome;
168-
font-size: .80em;
169-
line-height: floor(@line-height-computed - @line-height-reduction);
170-
display: inline-block;
171-
text-decoration: none;
172-
}
173-
174-
.link-icon-before(@icon){
175-
.link-icon(@icon);
176-
font-size: inherit;
177-
padding-right: 5px;
178-
}
179-
180-
.link-icon-after(@icon){
181-
.link-icon(@icon);
182-
padding-left: 5px;
183-
}
178+
@icon-powerpoint: "\f1c4";

‎src/less/components/meganav/meganav.hbs

-9
This file was deleted.

‎src/less/fontawesome/_font-awesome.less

-17
This file was deleted.

‎src/less/fontawesome/_variables.less

-14
This file was deleted.

‎src/less/layout/grid/grid-options.html

-73
This file was deleted.

‎src/less/layout/layout.less

-7
This file was deleted.

‎src/less/navbar-ualib.less

-327
This file was deleted.

‎src/less/style/buttons/button-tags.hbs

-4
This file was deleted.

‎src/less/style/buttons/button-types.hbs

-20
This file was deleted.

‎src/less/style/color/primary.html

-11
This file was deleted.

‎src/less/style/links/file-external-links.html

-9
This file was deleted.

‎src/less/style/style.less

-7
This file was deleted.

‎src/less/style/tables/tables.html

-61
This file was deleted.

‎src/less/style/typography/body-font.html

-8
This file was deleted.

‎src/less/style/typography/headings.html

-28
This file was deleted.

‎src/less/styleguide.md

-99
This file was deleted.

‎src/template/index.html

+82-27
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!DOCTYPE html>
2-
<!--[if lte IE 6]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
3-
<!--[if IEMobile 7]> <html class="no-js iem7" lang="en"> <![endif]-->
4-
<!--[if (IE 7)&(!IEMobile)]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
5-
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
6-
<!--[if (gte IE 9)|(gt IEMobile 7)]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
2+
<!--[if lte IE 6]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en" ng-app="styleguide"> <![endif]-->
3+
<!--[if IEMobile 7]> <html class="no-js iem7" lang="en" ng-app="styleguide"> <![endif]-->
4+
<!--[if (IE 7)&(!IEMobile)]> <html class="no-js lt-ie9 lt-ie8" lang="en" ng-app="styleguide"> <![endif]-->
5+
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en" ng-app="styleguide"> <![endif]-->
6+
<!--[if (gte IE 9)|(gt IEMobile 7)]><!--> <html class="no-js" lang="en" ng-app="styleguide"> <!--<![endif]-->
77
<head>
88
<meta charset="utf-8">
99
<title>UA Libraries Styleguide</title>
@@ -15,15 +15,16 @@
1515
<link rel="stylesheet" href="http://yandex.st/highlightjs/8.0/styles/github.min.css">
1616
<link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,500|Oxygen:400,700,300|Open+Sans|EB+Garamond|Lato:300,400' rel='stylesheet' type='text/css'>
1717
<link rel="stylesheet" href="https://rawgit.com/ualibweb/roots-ualib/master/assets/css/main.min.css">
18+
<link href="../assets/css/vendor.css" rel="stylesheet">
1819
<link rel="stylesheet" href="public/ualib-styleguide.css">
1920
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
20-
<link href="../assets/css/vendor.css" rel="stylesheet">
21+
<link href="https://rawgit.com/ualibweb/ui-components/master/dist/ui-components.css" rel="stylesheet">
2122
{{{styles}}}
2223
</head>
23-
<body data-spy="scroll" data-target="#styleguide-nav" data-offset="90">
24+
<body>
2425
<header id="header-nav">
25-
<nav class="navbar navbar-static-top navbar-ualib yamm" role="navigation">
26-
<div class="container">
26+
<nav class="navbar navbar-static-top navbar-mega" role="navigation">
27+
<div class="container-fluid">
2728
<div class="navbar-header">
2829
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
2930
<span class="sr-only">Toggle navigation</span>
@@ -36,33 +37,39 @@
3637

3738
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
3839
<ul class="nav navbar-nav">
40+
{{#eachRoot}}
3941
<li class="dropdown yamm-fw">
40-
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-target="#">Styleguide</a>
42+
<a href="#" class="dropdown-toggle">{{header}}</a>
43+
4144
<ul class="dropdown-menu">
4245
<li>
43-
<div class="yamm-content ualib-mm">
46+
<div class="yamm-content">
4447
<div class="row">
45-
<ul class="list-unstyled">
46-
{{#eachRoot}}
47-
<li class="col-xs-3 menu-col menu-practice-presentation-rooms"{{#isRoot @root.rootNumber}} class="active" {{/isRoot}}>
48-
<a href="section-{{reference}}.html">
48+
<ul class="list-unstyled">
49+
{{#eachSection reference}}
50+
{{#ifDepth 2}}
51+
<li class="col-xs-3 menu-col">
52+
<a href="section-{{../../referenceURI}}.html#{{scrollSpyId referenceURI}}">
4953
{{#if icon}}
5054
<span class="fa {{icon}}"></span>
5155
{{/if}}
5256
<h4>{{header}}</h4>
53-
{{#if titleslug}}
54-
<p>{{titleslig}}</p>
57+
{{#if menublurb}}
58+
<p>{{menublurb}}</p>
5559
{{/if}}
5660
</a>
5761
</li>
58-
{{/eachRoot}}
62+
{{/ifDepth}}
63+
{{/eachSection}}
5964
</ul>
65+
6066
</div>
6167
</div>
6268
</li>
6369
</ul>
64-
</li>
6570

71+
</li>
72+
{{/eachRoot}}
6673
</ul>
6774
<ul class="nav navbar-nav navbar-right">
6875
<li>
@@ -90,8 +97,8 @@ <h4>{{header}}</h4>
9097
<div class="jumbotron jumbotron-head">
9198
<div class="container">
9299
{{#if homepage}}
93-
<h1>Styleguide</h1>
94-
<p class="lead">CSS, Components, and Layout details</p>
100+
<h1>University Libraries Web Docs</h1>
101+
<p class="lead">Writing for the web, Styleguide, Website Components, and Resources.</p>
95102
{{else}}
96103
{{#section rootName}}
97104
<h1>{{header}}</h1>
@@ -108,19 +115,19 @@ <h1>{{header}}</h1>
108115
<div class="col-xs-12">{{{homepage}}}</div>
109116
{{else}}
110117
<div class="col-sm-2 col-sm-push-10">
111-
<nav class="fixie-menu">
118+
<nav class="fixie-menu navbar-styleguide">
112119
<ul class="nav nav-submenu">
113120
{{#eachSection rootName}}
114121
{{#ifDepth 2}}
115-
<li>
116-
<a href="#{{scrollSpyId reference}}" du-smooth-scroll du-scrollspy offset="100">
122+
<li data-target="#{{scrollSpyId reference}}" bs-scrollspy>
123+
<a class="menu-item" href="#{{scrollSpyId reference}}">
117124
{{header}}
118125
</a>
119-
<ul class="nav">
126+
<ul class="nav ">
120127
{{#eachSection reference}}
121128
{{#ifDepth 3}}
122-
<li>
123-
<a href="#{{scrollSpyId reference}}" du-smooth-scroll du-scrollspy offset="100">
129+
<li data-target="#{{scrollSpyId reference}}" bs-scrollspy>
130+
<a class="submenu-item" href="#{{scrollSpyId reference}}">
124131
{{header}}
125132
</a>
126133
</li>
@@ -202,7 +209,55 @@ <h1>{{header}}</h1>
202209
<script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.2/highlight.min.js"></script>
203210
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
204211
<script src="http://cdnjs.cloudflare.com/ajax/libs/holder/2.4.0/holder.js"></script>
212+
<script src="../assets/js/vendor.js"></script>
213+
<script src="https://rawgit.com/ualibweb/ui-components/master/dist/ui-components-templates.js"></script>
214+
<script src="https://rawgit.com/ualibweb/ui-components/master/dist/ui-components.js"></script>
205215
<script>hljs.initHighlightingOnLoad();</script>
216+
<script>
217+
angular.module('styleguide', ['ngAnimate', 'mgcrea.ngStrap', 'ualib.ui'])
218+
219+
/*.run(['$rootScope', function($rootScope){
220+
$rootScope.$on('duScrollspy:becameActive', function(event, elm){
221+
/*console.log({
222+
ev: event,
223+
element: elm
224+
})*
225+
})
226+
}])*/
206227

228+
.directive('fixieMenu', ['$window', function($window){
229+
return {
230+
restrict: 'AC',
231+
link: function(scope, elm, attrs){
232+
var width = elm[0].offsetWidth;
233+
var fixed = false;
234+
var fixieClass = 'nav-fixed';
235+
var offset = 350;
236+
angular.element($window).bind('scroll', fixieScroll);
237+
function fixieScroll(ev){
238+
if (this.pageYOffset > offset) {
239+
if (!fixed){
240+
console.log(width);
241+
elm.addClass(fixieClass);
242+
elm.css('width', width+'px');
243+
fixed = true;
244+
}
245+
}
246+
else {
247+
if (fixed){
248+
elm.removeClass(fixieClass);
249+
elm.css('width', 'auto');
250+
fixed = false;
251+
}
252+
}
253+
scope.$apply();
254+
}
255+
scope.$on('$destroy', function(){
256+
angular.element($window).unbind('scroll', fixieScroll);
257+
});
258+
}
259+
}
260+
}]);
261+
</script>
207262
</body>
208263
</html>

‎src/template/public/ualib-styleguide.less

+44-39
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import "../../less/_variables.less";
1+
@import "../../less/_variables";
22
body{
33
position: relative;
44

@@ -19,6 +19,15 @@ hr{
1919
border-color: #ddd;
2020
}
2121

22+
.menu-col:nth-child(4n+1) {
23+
clear: both;
24+
}
25+
26+
.section{
27+
padding-top: 15px;
28+
padding-bottom: 15px;
29+
}
30+
2231
.jumbotron-head{
2332
background-color: #993333;
2433
color: #f6f6f6;
@@ -28,56 +37,52 @@ hr{
2837
}
2938
}
3039

31-
.navbar-inverse .navbar-brand{
32-
color: #f6f6f6;
33-
}
34-
35-
.navbar-right > li > a{
36-
font-size: 18px;
37-
}
38-
39-
.navbar-styleguide{
40-
margin-bottom: 0 !important;
41-
backgroung-color: @gray-lighter !important;
42-
font-family: @headings-font-family;
43-
font-size: 16px;
44-
45-
& a{
46-
color: @brand-primary !important;
47-
}
48-
49-
& .navbar-nav{
50-
font-size: .95em;
51-
}
52-
}
53-
5440

5541
/* styleguide nav */
5642

5743
.nav-fixed{
58-
top: 72px;
44+
top: 30px;
5945
position: fixed;
6046
}
6147

62-
.styleguide-nav > .nav > li > a{
63-
font-family: 'Ubuntu', sans-serif;
64-
}
65-
66-
.styleguide-nav > .nav > li > .styleguide-nav-3{
67-
//padding-left: 30px;
68-
}
69-
70-
.styleguide-nav > .nav-pills {
48+
.nav-submenu {
7149
> li {
7250
// Active state
73-
&.active > a {
74-
&,
75-
&:hover,
76-
&:focus {
51+
a {
52+
color: @brand-primary;
53+
}
54+
55+
&.active,
56+
&:hover,
57+
&:focus {
58+
> a{
7759
color: @nav-pills-active-link-hover-color;
78-
background-color: @link-color;
60+
background-color: @brand-primary;
7961
}
8062
}
63+
64+
&.active > ul{
65+
display: block;
66+
}
67+
68+
> ul {
69+
display: none;
70+
> li{
71+
72+
> a, a:hover {
73+
padding-left: 15px;
74+
border-left: 2px solid @body-bg;
75+
}
76+
&.active,
77+
&:hover,
78+
&:focus {
79+
> a, a:hover, a:active, a:focus {
80+
border-color: @gray-light;
81+
}
82+
}
83+
}
84+
}
85+
8186
}
8287
}
8388

‎styleguide/index.html

+252-108
Large diffs are not rendered by default.

‎styleguide/public/ualib-styleguide.css

+40-68
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,3 @@
1-
.wrap > a[href^="http"]:after,
2-
.wrap > a[href^="https"]:after {
3-
content: "\f08e";
4-
font-family: FontAwesome;
5-
font-size: .80em;
6-
line-height: 16px;
7-
display: inline-block;
8-
text-decoration: none;
9-
padding-left: 5px;
10-
}
11-
.wrap > a[href$=".pdf"]:before {
12-
content: "\f1c1";
13-
font-family: FontAwesome;
14-
font-size: .80em;
15-
line-height: 16px;
16-
display: inline-block;
17-
text-decoration: none;
18-
font-size: inherit;
19-
padding-right: 5px;
20-
}
21-
.wrap > a[href$=".doc"]:before,
22-
.wrap > a[href$=".docx"]:before {
23-
content: "\f1c2";
24-
font-family: FontAwesome;
25-
font-size: .80em;
26-
line-height: 16px;
27-
display: inline-block;
28-
text-decoration: none;
29-
font-size: inherit;
30-
padding-right: 5px;
31-
}
32-
.wrap > a[href$=".xls"]:before,
33-
.wrap > a[href$=".xlsx"]:before {
34-
content: "\f1c3";
35-
font-family: FontAwesome;
36-
font-size: .80em;
37-
line-height: 16px;
38-
display: inline-block;
39-
text-decoration: none;
40-
font-size: inherit;
41-
padding-right: 5px;
42-
}
431
body {
442
position: relative;
453
}
@@ -56,6 +14,13 @@ pre {
5614
hr {
5715
border-color: #ddd;
5816
}
17+
.menu-col:nth-child(4n+1) {
18+
clear: both;
19+
}
20+
.section {
21+
padding-top: 15px;
22+
padding-bottom: 15px;
23+
}
5924
.jumbotron-head {
6025
background-color: #993333;
6126
color: #f6f6f6;
@@ -65,37 +30,44 @@ hr {
6530
.jumbotron-head .small {
6631
color: #E5D5D5;
6732
}
68-
.navbar-inverse .navbar-brand {
69-
color: #f6f6f6;
70-
}
71-
.navbar-right > li > a {
72-
font-size: 18px;
73-
}
74-
.navbar-styleguide {
75-
margin-bottom: 0 !important;
76-
backgroung-color: #f9f9f9 !important;
77-
font-family: 'Oxygen', sans-serif;
78-
font-size: 16px;
79-
}
80-
.navbar-styleguide a {
81-
color: #993333 !important;
82-
}
83-
.navbar-styleguide .navbar-nav {
84-
font-size: .95em;
85-
}
8633
/* styleguide nav */
8734
.nav-fixed {
88-
top: 72px;
35+
top: 30px;
8936
position: fixed;
9037
}
91-
.styleguide-nav > .nav > li > a {
92-
font-family: 'Ubuntu', sans-serif;
38+
.nav-submenu > li a {
39+
color: #993333;
9340
}
94-
.styleguide-nav > .nav-pills > li.active > a,
95-
.styleguide-nav > .nav-pills > li.active > a:hover,
96-
.styleguide-nav > .nav-pills > li.active > a:focus {
41+
.nav-submenu > li.active > a,
42+
.nav-submenu > li:hover > a,
43+
.nav-submenu > li:focus > a {
9744
color: #ffffff;
98-
background-color: #428bca;
45+
background-color: #993333;
46+
}
47+
.nav-submenu > li.active > ul {
48+
display: block;
49+
}
50+
.nav-submenu > li > ul {
51+
display: none;
52+
}
53+
.nav-submenu > li > ul > li > a,
54+
.nav-submenu > li > ul > li a:hover {
55+
padding-left: 15px;
56+
border-left: 2px solid #ffffff;
57+
}
58+
.nav-submenu > li > ul > li.active > a,
59+
.nav-submenu > li > ul > li:hover > a,
60+
.nav-submenu > li > ul > li:focus > a,
61+
.nav-submenu > li > ul > li.active a:hover,
62+
.nav-submenu > li > ul > li:hover a:hover,
63+
.nav-submenu > li > ul > li:focus a:hover,
64+
.nav-submenu > li > ul > li.active a:active,
65+
.nav-submenu > li > ul > li:hover a:active,
66+
.nav-submenu > li > ul > li:focus a:active,
67+
.nav-submenu > li > ul > li.active a:focus,
68+
.nav-submenu > li > ul > li:hover a:focus,
69+
.nav-submenu > li > ul > li:focus a:focus {
70+
border-color: #777777;
9971
}
10072
/* Example and Markup style exceptions */
10173
.panel-default > .panel-body > .table-responsive {
@@ -439,7 +411,7 @@ footer {
439411
}
440412
.navbar-ualib .navbar-collapse,
441413
.navbar-ualib .navbar-form {
442-
border-color: #e7e7e7;
414+
border-color: #e8e8e8;
443415
}
444416
.navbar-ualib .navbar-nav .dropdown-menu {
445417
border: 1px solid #f9f9f9;

‎styleguide/public/ualib-styleguide.less

+44-39
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import "../../less/_variables.less";
1+
@import "../../less/_variables";
22
body{
33
position: relative;
44

@@ -19,6 +19,15 @@ hr{
1919
border-color: #ddd;
2020
}
2121

22+
.menu-col:nth-child(4n+1) {
23+
clear: both;
24+
}
25+
26+
.section{
27+
padding-top: 15px;
28+
padding-bottom: 15px;
29+
}
30+
2231
.jumbotron-head{
2332
background-color: #993333;
2433
color: #f6f6f6;
@@ -28,56 +37,52 @@ hr{
2837
}
2938
}
3039

31-
.navbar-inverse .navbar-brand{
32-
color: #f6f6f6;
33-
}
34-
35-
.navbar-right > li > a{
36-
font-size: 18px;
37-
}
38-
39-
.navbar-styleguide{
40-
margin-bottom: 0 !important;
41-
backgroung-color: @gray-lighter !important;
42-
font-family: @headings-font-family;
43-
font-size: 16px;
44-
45-
& a{
46-
color: @brand-primary !important;
47-
}
48-
49-
& .navbar-nav{
50-
font-size: .95em;
51-
}
52-
}
53-
5440

5541
/* styleguide nav */
5642

5743
.nav-fixed{
58-
top: 72px;
44+
top: 30px;
5945
position: fixed;
6046
}
6147

62-
.styleguide-nav > .nav > li > a{
63-
font-family: 'Ubuntu', sans-serif;
64-
}
65-
66-
.styleguide-nav > .nav > li > .styleguide-nav-3{
67-
//padding-left: 30px;
68-
}
69-
70-
.styleguide-nav > .nav-pills {
48+
.nav-submenu {
7149
> li {
7250
// Active state
73-
&.active > a {
74-
&,
75-
&:hover,
76-
&:focus {
51+
a {
52+
color: @brand-primary;
53+
}
54+
55+
&.active,
56+
&:hover,
57+
&:focus {
58+
> a{
7759
color: @nav-pills-active-link-hover-color;
78-
background-color: @link-color;
60+
background-color: @brand-primary;
7961
}
8062
}
63+
64+
&.active > ul{
65+
display: block;
66+
}
67+
68+
> ul {
69+
display: none;
70+
> li{
71+
72+
> a, a:hover {
73+
padding-left: 15px;
74+
border-left: 2px solid @body-bg;
75+
}
76+
&.active,
77+
&:hover,
78+
&:focus {
79+
> a, a:hover, a:active, a:focus {
80+
border-color: @gray-light;
81+
}
82+
}
83+
}
84+
}
85+
8186
}
8287
}
8388

‎styleguide/section-components.html

+602
Large diffs are not rendered by default.

‎styleguide/section-layout.html

+176-26
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!DOCTYPE html>
2-
<!--[if lte IE 6]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
3-
<!--[if IEMobile 7]> <html class="no-js iem7" lang="en"> <![endif]-->
4-
<!--[if (IE 7)&(!IEMobile)]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
5-
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
6-
<!--[if (gte IE 9)|(gt IEMobile 7)]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
2+
<!--[if lte IE 6]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en" ng-app="styleguide"> <![endif]-->
3+
<!--[if IEMobile 7]> <html class="no-js iem7" lang="en" ng-app="styleguide"> <![endif]-->
4+
<!--[if (IE 7)&(!IEMobile)]> <html class="no-js lt-ie9 lt-ie8" lang="en" ng-app="styleguide"> <![endif]-->
5+
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en" ng-app="styleguide"> <![endif]-->
6+
<!--[if (gte IE 9)|(gt IEMobile 7)]><!--> <html class="no-js" lang="en" ng-app="styleguide"> <!--<![endif]-->
77
<head>
88
<meta charset="utf-8">
99
<title>UA Libraries Styleguide</title>
@@ -15,15 +15,16 @@
1515
<link rel="stylesheet" href="http://yandex.st/highlightjs/8.0/styles/github.min.css">
1616
<link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,500|Oxygen:400,700,300|Open+Sans|EB+Garamond|Lato:300,400' rel='stylesheet' type='text/css'>
1717
<link rel="stylesheet" href="https://rawgit.com/ualibweb/roots-ualib/master/assets/css/main.min.css">
18+
<link href="../assets/css/vendor.css" rel="stylesheet">
1819
<link rel="stylesheet" href="public/ualib-styleguide.css">
1920
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
20-
<link href="../assets/css/vendor.css" rel="stylesheet">
21+
<link href="https://rawgit.com/ualibweb/ui-components/master/dist/ui-components.css" rel="stylesheet">
2122

2223
</head>
23-
<body data-spy="scroll" data-target="#styleguide-nav" data-offset="90">
24+
<body>
2425
<header id="header-nav">
25-
<nav class="navbar navbar-static-top navbar-ualib yamm" role="navigation">
26-
<div class="container">
26+
<nav class="navbar navbar-static-top navbar-mega" role="navigation">
27+
<div class="container-fluid">
2728
<div class="navbar-header">
2829
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
2930
<span class="sr-only">Toggle navigation</span>
@@ -37,29 +38,130 @@
3738
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
3839
<ul class="nav navbar-nav">
3940
<li class="dropdown yamm-fw">
40-
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-target="#">Styleguide</a>
41+
<a href="#" class="dropdown-toggle">Components</a>
42+
4143
<ul class="dropdown-menu">
4244
<li>
43-
<div class="yamm-content ualib-mm">
45+
<div class="yamm-content">
4446
<div class="row">
45-
<ul class="list-unstyled">
46-
<li class="col-xs-3 menu-col menu-practice-presentation-rooms">
47-
<a href="section-style.html">
48-
<h4>Style</h4>
47+
<ul class="list-unstyled">
48+
<li class="col-xs-3 menu-col">
49+
<a href="section-components.html#components-dropdowns">
50+
<span class="fa fa-caret-square-o-down"></span>
51+
<h4>Dropdowns</h4>
52+
<p>Dropdowns for navigation and forms</p>
4953
</a>
5054
</li>
51-
<li class="col-xs-3 menu-col menu-practice-presentation-rooms">
52-
<a href="section-layout.html">
53-
<h4>Layout</h4>
55+
<li class="col-xs-3 menu-col">
56+
<a href="section-components.html#components-megamenu">
57+
<span class="fa th-list"></span>
58+
<h4>Mega Menu</h4>
59+
<p>Megamenu for main website navigation</p>
60+
</a>
61+
</li>
62+
<li class="col-xs-3 menu-col">
63+
<a href="section-components.html#components-pages_submenus">
64+
<span class="fa fs-columns"></span>
65+
<h4>Pages &amp; Submenus</h4>
66+
<p>Automatically generate submenus using the Page component</p>
5467
</a>
5568
</li>
5669
</ul>
70+
5771
</div>
5872
</div>
5973
</li>
6074
</ul>
75+
6176
</li>
77+
<li class="dropdown yamm-fw">
78+
<a href="#" class="dropdown-toggle">Style</a>
6279

80+
<ul class="dropdown-menu">
81+
<li>
82+
<div class="yamm-content">
83+
<div class="row">
84+
<ul class="list-unstyled">
85+
<li class="col-xs-3 menu-col">
86+
<a href="section-style.html#style-buttons">
87+
<span class="fa fa-hand-o-up"></span>
88+
<h4>Buttons</h4>
89+
<p>Types of buttons available to use on the website</p>
90+
</a>
91+
</li>
92+
<li class="col-xs-3 menu-col">
93+
<a href="section-style.html#style-color">
94+
<span class="fa fa-eyedropper"></span>
95+
<h4>Colors</h4>
96+
<p>Color scheme for the website and how to use them</p>
97+
</a>
98+
</li>
99+
<li class="col-xs-3 menu-col">
100+
<a href="section-style.html#style-icons">
101+
<span class="fa fa-info-circle"></span>
102+
<h4>Icons</h4>
103+
<p>Available icons and how to use them</p>
104+
</a>
105+
</li>
106+
<li class="col-xs-3 menu-col">
107+
<a href="section-style.html#style-images">
108+
<span class="fa fa-image"></span>
109+
<h4>Images</h4>
110+
<p>Using images in a responsive way</p>
111+
</a>
112+
</li>
113+
<li class="col-xs-3 menu-col">
114+
<a href="section-style.html#style-links">
115+
<span class="fa fa-link"></span>
116+
<h4>Links</h4>
117+
<p>Link types and their decoration</p>
118+
</a>
119+
</li>
120+
<li class="col-xs-3 menu-col">
121+
<a href="section-style.html#style-tables">
122+
<span class="fa fa-tables"></span>
123+
<h4>Tables</h4>
124+
<p>Types of tables and where to use them</p>
125+
</a>
126+
</li>
127+
<li class="col-xs-3 menu-col">
128+
<a href="section-style.html#style-typography">
129+
<span class="fa fa-font"></span>
130+
<h4>Typography</h4>
131+
<p>Fonts used for body, heading, and other text elements</p>
132+
</a>
133+
</li>
134+
</ul>
135+
136+
</div>
137+
</div>
138+
</li>
139+
</ul>
140+
141+
</li>
142+
<li class="dropdown yamm-fw">
143+
<a href="#" class="dropdown-toggle">Layout</a>
144+
145+
<ul class="dropdown-menu">
146+
<li>
147+
<div class="yamm-content">
148+
<div class="row">
149+
<ul class="list-unstyled">
150+
<li class="col-xs-3 menu-col">
151+
<a href="section-layout.html#layout-grid">
152+
<span class="fa fa-th"></span>
153+
<h4>The Grid</h4>
154+
<p>Make responsive layouts using the grid</p>
155+
</a>
156+
</li>
157+
</ul>
158+
159+
</div>
160+
</div>
161+
</li>
162+
</ul>
163+
164+
</li>
63165
</ul>
64166
<ul class="nav navbar-nav navbar-right">
65167
<li>
@@ -94,20 +196,20 @@ <h1>Layout</h1>
94196
</div>
95197
<div class="container">
96198
<div class="col-sm-2 col-sm-push-10">
97-
<nav class="fixie-menu">
199+
<nav class="fixie-menu navbar-styleguide">
98200
<ul class="nav nav-submenu">
99-
<li>
100-
<a href="#layout-grid" du-smooth-scroll du-scrollspy offset="100">
201+
<li data-target="#layout-grid" bs-scrollspy>
202+
<a class="menu-item" href="#layout-grid">
101203
The Grid
102204
</a>
103-
<ul class="nav">
104-
<li>
105-
<a href="#layout-grid-creation" du-smooth-scroll du-scrollspy offset="100">
205+
<ul class="nav ">
206+
<li data-target="#layout-grid-creation" bs-scrollspy>
207+
<a class="submenu-item" href="#layout-grid-creation">
106208
Grid creation
107209
</a>
108210
</li>
109-
<li>
110-
<a href="#layout-grid-options" du-smooth-scroll du-scrollspy offset="100">
211+
<li data-target="#layout-grid-options" bs-scrollspy>
212+
<a class="submenu-item" href="#layout-grid-options">
111213
Grid options
112214
</a>
113215
</li>
@@ -234,7 +336,55 @@ <h3>Grid options</h3>
234336
<script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.2/highlight.min.js"></script>
235337
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
236338
<script src="http://cdnjs.cloudflare.com/ajax/libs/holder/2.4.0/holder.js"></script>
339+
<script src="../assets/js/vendor.js"></script>
340+
<script src="https://rawgit.com/ualibweb/ui-components/master/dist/ui-components-templates.js"></script>
341+
<script src="https://rawgit.com/ualibweb/ui-components/master/dist/ui-components.js"></script>
237342
<script>hljs.initHighlightingOnLoad();</script>
343+
<script>
344+
angular.module('styleguide', ['ngAnimate', 'mgcrea.ngStrap', 'ualib.ui'])
345+
346+
/*.run(['$rootScope', function($rootScope){
347+
$rootScope.$on('duScrollspy:becameActive', function(event, elm){
348+
/*console.log({
349+
ev: event,
350+
element: elm
351+
})*
352+
})
353+
}])*/
238354

355+
.directive('fixieMenu', ['$window', function($window){
356+
return {
357+
restrict: 'AC',
358+
link: function(scope, elm, attrs){
359+
var width = elm[0].offsetWidth;
360+
var fixed = false;
361+
var fixieClass = 'nav-fixed';
362+
var offset = 350;
363+
angular.element($window).bind('scroll', fixieScroll);
364+
function fixieScroll(ev){
365+
if (this.pageYOffset > offset) {
366+
if (!fixed){
367+
console.log(width);
368+
elm.addClass(fixieClass);
369+
elm.css('width', width+'px');
370+
fixed = true;
371+
}
372+
}
373+
else {
374+
if (fixed){
375+
elm.removeClass(fixieClass);
376+
elm.css('width', 'auto');
377+
fixed = false;
378+
}
379+
}
380+
scope.$apply();
381+
}
382+
scope.$on('$destroy', function(){
383+
angular.element($window).unbind('scroll', fixieScroll);
384+
});
385+
}
386+
}
387+
}]);
388+
</script>
239389
</body>
240390
</html>

‎styleguide/section-style.html

+321-54
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
This repository has been archived.