Skip to content

Commit 7228b7f

Browse files
committed
Updating to try making use of gulp
1 parent 8377dd0 commit 7228b7f

File tree

2,651 files changed

+430076
-8880
lines changed

Some content is hidden

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

2,651 files changed

+430076
-8880
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

assets/less/imports.less

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
.imports (@siteStyle) when (@siteStyle = dark) {
2+
@import (less) "../../../../../public/vendor/darkstrap3/darkstrap.css";
3+
}
4+
5+
6+
// Cross-browser compatibility
7+
@import "prefixer.less";
8+
9+
@import "../../../../../public/vendor/bootstrap3/less/bootstrap";
10+
11+
// Site style based importing
12+
.imports(@siteStyle);
13+
14+
// Custom changes to bootstrap/darkstrap
15+
@import "master_mixins";
16+
17+
// Fuel UX wizard mixins
18+
@import "../../../../../public/vendor/fuelux/dist/less/variables";
19+
@import "../../../../../public/vendor/fuelux/dist/less/wizard";

assets/less/master.less

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@import "../../../../../public/css/colors";
2+
3+
@import "imports";

public/less/master_mixins.less renamed to assets/less/master_mixins.less

Lines changed: 271 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1424,9 +1424,280 @@ td {
14241424
/*
14251425
/////////////////////////////////////////////////////// Utopian Menu /////////////////////////////////////////////////////////
14261426
*/
1427+
#utopian-navigation, #utopian-navigation ul {
1428+
font-size: 14px;
1429+
list-style: none;
1430+
margin: 0;
1431+
padding: 0;
1432+
}
1433+
#utopian-navigation {
1434+
a {
1435+
color: #808080;
1436+
display: block;
1437+
line-height: 1;
1438+
font-weight: bold;
1439+
padding: 10px 20px;
1440+
text-decoration: none;
1441+
&:hover {
1442+
color: #ffffff;
1443+
}
1444+
}
1445+
li {
1446+
float: left;
1447+
ul {
1448+
background: #666666;
1449+
background: -moz-radial-gradient(80% 0% 0deg, circle cover, #787878, #666666, #666666 90%);
1450+
background: -webkit-gradient(radial, 160 -100, 0, 160 -100, 200, from(#8a8a8a), to(#666666));
1451+
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
1452+
-moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
1453+
-webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
1454+
left: -9999px;
1455+
position: absolute;
1456+
width: 190px;
1457+
z-index: 1000;
1458+
a {
1459+
border-top: 1px solid #838383;
1460+
border-right: 1px solid #7b7b7b;
1461+
border-bottom: 1px solid #484848;
1462+
border-left: 1px solid #4c4c4c;
1463+
color: #a4a4a4;
1464+
font-weight: normal;
1465+
padding: 9px 19px;
1466+
text-shadow: #4d4d4d -1px -1px 0;
1467+
width: 150px;
1468+
box-sizing: content-box !important;
1469+
}
1470+
ul {
1471+
margin: -34px 0 0 190px;
1472+
}
1473+
}
1474+
}
1475+
& > li {
1476+
&.dropdown {
1477+
& > a {
1478+
background: url(../../img/css_images/arrow-down-gray.gif) no-repeat center right;
1479+
padding-right: 35px;
1480+
}
1481+
&:hover {
1482+
& > a {
1483+
background: #666666 url(../../img/css_images/arrow-down-white.gif) no-repeat center right;
1484+
background-image: url(../../img/css_images/arrow-down-white.gif), -moz-radial-gradient(80% 0% 0deg, circle cover, #787878, #666666, #666666 90%);
1485+
background-image: url(../../img/css_images/arrow-down-white.gif), -webkit-gradient(radial, 160 -100, 0, 160 -100, 200, from(#8a8a8a), to(#666666));
1486+
border-top: 1px solid #8d8d8d;
1487+
border-right: 1px solid #7b7b7b;
1488+
border-bottom: 1px solid #484848;
1489+
border-left: 1px solid #4c4c4c;
1490+
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
1491+
-moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
1492+
-webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
1493+
color: #ffffff;
1494+
padding: 9px 34px 9px 19px;
1495+
text-shadow: #595959 -1px -1px 0;
1496+
}
1497+
}
1498+
li {
1499+
&.dropdown {
1500+
& > a {
1501+
background: url(../../img/css_images/arrow-right-gray.gif) no-repeat center right;
1502+
}
1503+
}
1504+
}
1505+
}
1506+
}
1507+
&.subMenu {
1508+
li {
1509+
float: left;
1510+
&:last-of-type {
1511+
float: left;
1512+
}
1513+
}
1514+
}
1515+
&.vertical {
1516+
width: 190px;
1517+
a {
1518+
width: 150px;
1519+
}
1520+
li {
1521+
ul {
1522+
margin: -34px 0 0 190px;
1523+
}
1524+
}
1525+
& > li {
1526+
&.dropdown {
1527+
& > a {
1528+
background: url(../../img/css_images/arrow-right-gray.gif) no-repeat center right;
1529+
width: 135px;
1530+
}
1531+
&:hover {
1532+
& > a {
1533+
background: #666666 url(../../img/css_images/arrow-right-white.gif) no-repeat center right;
1534+
background-image: url(../../img/css_images/arrow-right-white.gif), -moz-radial-gradient(80% 0% 0deg, circle cover, #787878, #666666, #666666 90%);
1535+
background-image: url(../../img/css_images/arrow-right-white.gif), -webkit-gradient(radial, 160 -100, 0, 160 -100, 200, from(#8a8a8a), to(#666666));
1536+
}
1537+
}
1538+
}
1539+
}
1540+
&.black {
1541+
& > li {
1542+
&.dropdown {
1543+
&:hover {
1544+
& > a {
1545+
background: #000000 url(../../img/css_images/arrow-right-white.gif) no-repeat center right;
1546+
background-image: url(../../img/css_images/arrow-right-white.gif), -moz-radial-gradient(90% 0% 0deg, circle cover, #191919, #000000, #000000 150%);
1547+
background-image: url(../../img/css_images/arrow-right-white.gif), -webkit-gradient(radial, 160 -100, 0, 160 -100, 200, from(#4d4d4d), to(#000000));
1548+
}
1549+
}
1550+
}
1551+
}
1552+
}
1553+
&.white {
1554+
& > li {
1555+
&.dropdown {
1556+
&:hover {
1557+
& > a {
1558+
background: #ffffff url(../../img/css_images/arrow-right-black.gif) no-repeat center right;
1559+
}
1560+
}
1561+
}
1562+
}
1563+
}
1564+
}
1565+
&.black {
1566+
li {
1567+
ul {
1568+
background: #000000;
1569+
background: -moz-radial-gradient(90% -20% 0deg, circle cover, #252525, #000000, #000000 150%);
1570+
background: -webkit-gradient(radial, 160 -100, 0, 160 -100, 200, from(#444444), to(#000000));
1571+
a {
1572+
border-top-color: #1c1c1c;
1573+
border-right-color: #1a1a1a;
1574+
border-bottom-color: #000000;
1575+
border-left-color: #000000;
1576+
color: #c9c9c9;
1577+
text-shadow: #000000 -1px -1px 0;
1578+
}
1579+
}
1580+
}
1581+
& > li {
1582+
&.dropdown {
1583+
&:hover {
1584+
& > a {
1585+
background: #000000 url(../../img/css_images/arrow-down-white.gif) no-repeat center right;
1586+
background-image: url(../../img/css_images/arrow-down-white.gif), -moz-radial-gradient(90% -20% 0deg, circle cover, #191919, #000000, #000000 150%);
1587+
background-image: url(../../img/css_images/arrow-down-white.gif), -webkit-gradient(radial, 160 -100, 0, 160 -100, 200, from(#444444), to(#000000));
1588+
border-top-color: #1c1c1c;
1589+
border-right-color: #1a1a1a;
1590+
border-bottom-color: #000000;
1591+
border-left-color: #000000;
1592+
color: #ffffff;
1593+
text-shadow: none;
1594+
}
1595+
}
1596+
li {
1597+
&.dropdown {
1598+
& > a {
1599+
background: url(../../img/css_images/arrow-right-darkgray.gif) no-repeat center right;
1600+
text-shadow: none;
1601+
}
1602+
}
1603+
}
1604+
}
1605+
}
1606+
}
1607+
&.white {
1608+
li {
1609+
ul {
1610+
background: #ffffff;
1611+
a {
1612+
border-top-color: #ffffff;
1613+
border-right-color: #e1e1e1;
1614+
border-bottom-color: #dddddd;
1615+
border-left-color: #ffffff;
1616+
color: #999999;
1617+
text-shadow: #ffffff 1px 1px 0;
1618+
}
1619+
}
1620+
}
1621+
& > li {
1622+
&.dropdown {
1623+
&:hover {
1624+
& > a {
1625+
background: #ffffff url(../../img/css_images/arrow-down-black.gif) no-repeat center right;
1626+
border-top-color: #ffffff;
1627+
border-right-color: #e1e1e1;
1628+
border-bottom-color: #dddddd;
1629+
border-left-color: #ffffff;
1630+
color: #000000;
1631+
text-shadow: none;
1632+
}
1633+
}
1634+
li {
1635+
&.dropdown {
1636+
& > a {
1637+
background: url(../../img/css_images/arrow-right-darkgray.gif) no-repeat center right;
1638+
text-shadow: none;
1639+
}
1640+
}
1641+
}
1642+
}
1643+
}
1644+
}
1645+
}
1646+
#utopian-navigation li ul a:hover, #utopian-navigation > li.dropdown li.dropdown > a:hover, #utopian-navigation > li.dropdown li.dropdown:hover > a {
1647+
background: #0099ff;
1648+
background: -moz-linear-gradient(100% 100% 90deg, #017bcd, #33adff);
1649+
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#33adff), to(#017bcd));
1650+
border-top: 0;
1651+
color: #ffffff;
1652+
font-weight: bold;
1653+
padding-top: 10px;
1654+
text-shadow: #1c567c -1px -1px 0;
1655+
}
1656+
#utopian-navigation > li.dropdown li.dropdown > a:hover, #utopian-navigation > li.dropdown li.dropdown:hover > a {
1657+
background: #0099ff url(../../img/css_images/arrow-right-white.gif) no-repeat center right;
1658+
background-image: url(../../img/css_images/arrow-right-white.gif), -moz-linear-gradient(100% 100% 90deg, #017bcd, #33adff);
1659+
background-image: url(../../img/css_images/arrow-right-white.gif), -webkit-gradient(linear, 0% 0%, 0% 100%, from(#33adff), to(#017bcd));
1660+
}
1661+
#utopian-navigation li:hover ul ul, #utopian-navigation li:hover ul ul ul {
1662+
left: -9999px;
1663+
}
1664+
#utopian-navigation li:hover ul, #utopian-navigation li li:hover ul, #utopian-navigation li li li:hover ul {
1665+
left: auto;
1666+
}
14271667
#utopian-navigation > li.active > a, #utopian-navigation > li.active > a:hover {
14281668
color: @menuColor;
14291669
}
1670+
#utopian-navigation.subMenu, #utopian-navigation.subMenu ul {
1671+
font-size: 10px;
1672+
}
1673+
#utopian-navigation.subMenu li:hover:last-of-type ul, #utopian-navigation.subMenu li:last-of-type li:hover ul, #utopian-navigation.subMenu li:last-of-type li li:hover ul {
1674+
left: auto;
1675+
right: auto;
1676+
}
1677+
#utopian-navigation.black li ul a:hover, #utopian-navigation.black > li.dropdown li.dropdown > a:hover, #utopian-navigation.black > li.dropdown li.dropdown:hover > a {
1678+
background: #181818;
1679+
background: -moz-linear-gradient(100% 100% 90deg, #181818, #252525);
1680+
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252525), to(#181818));
1681+
color: #ffffff;
1682+
font-weight: bold;
1683+
}
1684+
#utopian-navigation.black > li.dropdown li.dropdown > a:hover, #utopian-navigation.black > li.dropdown li.dropdown:hover > a {
1685+
background: #181818 url(../../img/css_images/arrow-right-white.gif) no-repeat center right;
1686+
background-image: url(../../img/css_images/arrow-right-white.gif), -moz-linear-gradient(100% 100% 90deg, #181818, #252525);
1687+
background-image: url(../../img/css_images/arrow-right-white.gif), -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252525), to(#181818));
1688+
}
1689+
#utopian-navigation.white li ul a:hover, #utopian-navigation.white > li.dropdown li.dropdown > a:hover, #utopian-navigation.white > li.dropdown li.dropdown:hover > a {
1690+
background: #eaeaea;
1691+
background: -moz-linear-gradient(100% 100% 90deg, #eaeaea, #f9f9f9);
1692+
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9f9f9), to(#eaeaea));
1693+
color: #000000;
1694+
font-weight: bold;
1695+
}
1696+
#utopian-navigation.white > li.dropdown li.dropdown > a:hover, #utopian-navigation.white > li.dropdown li.dropdown:hover > a {
1697+
background: #eaeaea url(../../img/css_images/arrow-right-black.gif) no-repeat center right;
1698+
background-image: url(../../img/css_images/arrow-right-black.gif), -moz-linear-gradient(100% 100% 90deg, #eaeaea, #f9f9f9);
1699+
background-image: url(../../img/css_images/arrow-right-black.gif), -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9f9f9), to(#eaeaea));
1700+
}
14301701
/*
14311702
/////////////////////////////////////////////////////// Fuel UX /////////////////////////////////////////////////////////
14321703
*/
File renamed without changes.

assets/node_modules/.bin/gulp

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/node_modules/gulp-autoprefixer/.npmignore

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)