Browse Source
moves examples into release
moves examples into release
Former-commit-id:pull/258/head59378b587a
Former-commit-id:24e3a8602b
20 changed files with 384 additions and 138 deletions
Unified View
Diff Options
-
10build/examples/feed.css
-
112build/examples/feed.html
-
0build/examples/feed.js
-
12build/less/elements/icon.less
-
2build/minified/elements/icon.min.css
-
2build/packaged/css/semantic.min.css.REMOVED.git-id
-
9build/uncompressed/elements/icon.css
-
2node/src/documents/elements/icon.html.eco.REMOVED.git-id
-
92node/src/files/build/examples/feed.css
-
163node/src/files/build/examples/feed.html
-
9node/src/files/build/examples/feed.js
-
12node/src/files/build/less/elements/icon.less
-
2node/src/files/build/minified/elements/icon.min.css
-
2node/src/files/build/packaged/css/semantic.min.css.REMOVED.git-id
-
2node/src/files/build/semantic.zip.REMOVED.git-id
-
9node/src/files/build/uncompressed/elements/icon.css
-
70node/src/files/examples/feed.html
-
0node/src/files/spec/assets/docco.css
-
0spec/assets/docco.css
-
12src/elements/icon.less
2
build/minified/elements/icon.min.css
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1 +1 @@ |
|||||
35587b1615cc2255e2409ad0559e71b0042cbb65 |
|
||||
|
9c2c74b440fd4d6f97913fa12efad677c0f4dc81 |
@ -1 +1 @@ |
|||||
d840910e9c317f48932bc9645c7c1dc78c83116e |
|
||||
|
2dab59513c8c4e30bb50c18959714cf8f0ed404a |
@ -0,0 +1,92 @@ |
|||||
|
/******************************* |
||||
|
Global |
||||
|
*******************************/ |
||||
|
|
||||
|
html, |
||||
|
body { |
||||
|
font-size: 15px; |
||||
|
height: 100%; |
||||
|
overflow-x: hidden; |
||||
|
} |
||||
|
|
||||
|
body { |
||||
|
font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif; |
||||
|
background: #FFFFFF; |
||||
|
margin: 0px; |
||||
|
padding: 0px; |
||||
|
color: #555555; |
||||
|
text-rendering: optimizeLegibility; |
||||
|
min-width: 320px; |
||||
|
} |
||||
|
|
||||
|
.ui.header { |
||||
|
font-family: 'Source Sans Pro', "Helvetica Neue", "Helvetica", "Arial", sans-serif; |
||||
|
} |
||||
|
|
||||
|
/******************************* |
||||
|
Global |
||||
|
*******************************/ |
||||
|
|
||||
|
|
||||
|
/*------------------- |
||||
|
Grid |
||||
|
--------------------*/ |
||||
|
|
||||
|
#feed .grid { |
||||
|
height: 100%; |
||||
|
} |
||||
|
#feed > .grid > .column { |
||||
|
height: 100%; |
||||
|
} |
||||
|
|
||||
|
/*------------------- |
||||
|
Menu |
||||
|
--------------------*/ |
||||
|
|
||||
|
#feed .left.column { |
||||
|
background-color: #333333; |
||||
|
min-width: 260px; |
||||
|
} |
||||
|
#feed .left.column > .menu { |
||||
|
height: 100%; |
||||
|
} |
||||
|
|
||||
|
|
||||
|
/*------------------- |
||||
|
Inbox |
||||
|
--------------------*/ |
||||
|
|
||||
|
#feed .inbox { |
||||
|
background-color: #FFFFFF; |
||||
|
} |
||||
|
#feed .inbox .item { |
||||
|
padding-top: 1rem; |
||||
|
padding-bottom: 1rem; |
||||
|
} |
||||
|
#feed .middle.column { |
||||
|
padding: 1em 2em; |
||||
|
} |
||||
|
|
||||
|
#feed .right.column { |
||||
|
padding: 1em 2em; |
||||
|
background-color: #FFFFFF; |
||||
|
} |
||||
|
|
||||
|
|
||||
|
/******************************* |
||||
|
Responsive |
||||
|
*******************************/ |
||||
|
|
||||
|
|
||||
|
@media only screen and (max-width : 1000px) { |
||||
|
#feed .inbox .date { |
||||
|
float: none; |
||||
|
margin-bottom: 0.5em; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
@media only screen and (max-width : 1250px) { |
||||
|
#feed .left.column > .menu .item { |
||||
|
font-size: 1rem; |
||||
|
} |
||||
|
} |
@ -0,0 +1,163 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<head> |
||||
|
<!-- Standard Meta --> |
||||
|
<meta charset="utf-8" /> |
||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> |
||||
|
|
||||
|
<!-- Site Properities --> |
||||
|
<title>Feed Example - Semantic</title> |
||||
|
|
||||
|
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Open+Sans:300italic,400,300,700' rel='stylesheet' type='text/css'> |
||||
|
|
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/elements/button.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/elements/divider.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/elements/header.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/elements/icon.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/elements/image.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/elements/input.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/elements/label.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/elements/loader.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/elements/progress.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/elements/segment.css"> |
||||
|
|
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/collections/breadcrumb.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/collections/form.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/collections/grid.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/collections/menu.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/collections/message.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/collections/table.css"> |
||||
|
|
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/views/list.css"> |
||||
|
|
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/modules/modal.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/modules/dropdown.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/modules/popup.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/modules/sidebar.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/modules/tab.css"> |
||||
|
<link rel="stylesheet" type="text/css" href="../uncompressed/modules/checkbox.css"> |
||||
|
|
||||
|
|
||||
|
|
||||
|
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.js"></script> |
||||
|
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.address/1.6/jquery.address.js"></script> |
||||
|
<script src="../uncompressed/modules/behavior/state.js"></script> |
||||
|
<script src="../uncompressed/modules/checkbox.js"></script> |
||||
|
<script src="../uncompressed/modules/dimmer.js"></script> |
||||
|
<script src="../uncompressed/modules/dropdown.js"></script> |
||||
|
<script src="../uncompressed/modules/modal.js"></script> |
||||
|
<script src="../uncompressed/modules/popup.js"></script> |
||||
|
<script src="../uncompressed/modules/rating.js"></script> |
||||
|
<script src="../uncompressed/modules/sidebar.js"></script> |
||||
|
<script src="../uncompressed/modules/tab.js"></script> |
||||
|
<script src="../uncompressed/modules/transition.js"></script> |
||||
|
|
||||
|
<link rel="stylesheet" type="text/css" href="feed.css"> |
||||
|
<script src="feed.js"></script> |
||||
|
|
||||
|
</head> |
||||
|
<body id="feed"> |
||||
|
<div class="ui celled grid"> |
||||
|
<div class="three wide left column"> |
||||
|
<div class="ui large fluid inverted vertical menu"> |
||||
|
<a class="active item"> |
||||
|
Dogs Weekly <span class="ui label">213</span> |
||||
|
</a> |
||||
|
<a class="item"> |
||||
|
Joystiq <span class="ui label">113</span> |
||||
|
</a> |
||||
|
<div class="item"> |
||||
|
<b>Archived Feeds</b> |
||||
|
<div class="menu"> |
||||
|
<a class="item"> |
||||
|
Engadget <span class="ui label">11</span> |
||||
|
</a> |
||||
|
<a class="item"> |
||||
|
NY Times Tech Blog <span class="ui label">21</span> |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<a class="item"> |
||||
|
<i class="bookmark icon"></i> Favorites |
||||
|
</a> |
||||
|
<a class="item"> |
||||
|
<i class="add icon"></i> New Feed |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="six wide middle column"> |
||||
|
<div class="ui tabular filter menu"> |
||||
|
<a class="active item" data-tab="unread">Unread</a> |
||||
|
<a class="item" data-tab="saved">Saved</a> |
||||
|
<a class="item" data-tab="all">All</a> |
||||
|
</div> |
||||
|
<div class="ui divided inbox selection list active tab" data-tab="unread"> |
||||
|
<a class="active item"> |
||||
|
<div class="right floated date">Sep 14, 2013</div> |
||||
|
<i class="empty star link icon"></i> |
||||
|
Weekly Webcomic Wrapup fought the law, and the law won |
||||
|
</a> |
||||
|
<a class="item"> |
||||
|
<div class="right floated date">Sep 14, 2013</div> |
||||
|
<i class="empty star link icon"></i> |
||||
|
Scientists discover new breed of dog |
||||
|
</a> |
||||
|
<a class="item"> |
||||
|
<div class="right floated date">Sep 10, 2013</div> |
||||
|
<i class="teal emphasized star link icon"></i> |
||||
|
Dogs start colony in Antarctica |
||||
|
</a> |
||||
|
<a class="item"> |
||||
|
<div class="right floated date">Sep 09, 2013</div> |
||||
|
<i class="empty star link icon"></i> |
||||
|
Famous dog whisperer Chakotay dies today at 104 |
||||
|
</a> |
||||
|
<a class="item"> |
||||
|
<div class="right floated date">Sep 07, 2013</div> |
||||
|
<i class="empty star link icon"></i> |
||||
|
Top 10 Things to Know about Labradoodles |
||||
|
</a> |
||||
|
<a class="item"> |
||||
|
<div class="right floated date">Sep 05, 2013</div> |
||||
|
<i class="empty star link icon"></i> |
||||
|
Study shows children enjoy the company of animals |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="ui divided inbox selection list tab" data-tab="saved"> |
||||
|
<a class="item"> |
||||
|
<div class="right floated date">Sep 14, 2013</div> |
||||
|
<i class="teal emphasized star link icon"></i> |
||||
|
Your favorite saved article |
||||
|
</a> |
||||
|
<a class="item"> |
||||
|
<div class="right floated date">Sep 14, 2013</div> |
||||
|
<i class="teal emphasized star link icon"></i> |
||||
|
Your favorite saved article |
||||
|
</a> |
||||
|
<a class="item"> |
||||
|
<div class="right floated date">Sep 14, 2013</div> |
||||
|
<i class="teal emphasized star link icon"></i> |
||||
|
Your favorite saved article |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="ui divided inbox selection list tab" data-tab="all"> |
||||
|
<a class="item"> |
||||
|
<div class="right floated date">Sep 14, 2013</div> |
||||
|
<i class="star link icon"></i> |
||||
|
There turns out there is only one article under all. |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="seven wide right column"> |
||||
|
<h1 class="ui header">Weekly Webcomic Wrapup fought the law, and the law won</h1> |
||||
|
<p>So there's this video game coming out Tuesday called Grand Theft Auto 5. Don't know if you've heard of it. Anyways, it's all about crime and gangs and some roughneck ne'er-do-wells, so I thought this would be the perfect time to talk about times when we've been... well, less than perfect.</p> |
||||
|
<p>When I was a young'un, I was a frequent visitor to the local swimming pool. I was also a frequent lover of AirHeads candy, which the pool happened to sell. Waiting, watching, stalking the counter like a big cat in the savannah, I waited for the perfect opportunity to strike. While the lifeguards were busy, I snuck through the gate, reached up and took both cherry and "mystery white" AirHeads. I quickly ran out to the sidewalk and reveled in my sweet, delicious victory... for all of ten seconds, before I felt guilty enough to sneak back in and return the .20 worth of candy I had stolen.</p> |
||||
|
<p>While you confess your crimes - hopefully minor, and nothing you can be persecuted for - take a moment to enjoy this week's webcomics, and vote for your favorite after the jump.</p> |
||||
|
<div class="ui divider"></div> |
||||
|
<div class="ui basic button">Save</div> |
||||
|
<div class="ui basic button">Delete</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</body> |
||||
|
|
||||
|
</html> |
@ -0,0 +1,9 @@ |
|||||
|
$(document) |
||||
|
.ready(function() { |
||||
|
|
||||
|
$('.filter.menu .item') |
||||
|
.tab() |
||||
|
; |
||||
|
|
||||
|
}) |
||||
|
; |
2
node/src/files/build/minified/elements/icon.min.css
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1 +1 @@ |
|||||
35587b1615cc2255e2409ad0559e71b0042cbb65 |
|
||||
|
9c2c74b440fd4d6f97913fa12efad677c0f4dc81 |
@ -1 +1 @@ |
|||||
d6da98d1ac7ba6798eb97466fce8137988b258ac |
|
||||
|
06eaa868ced81f85066e3cdc58d9877607ccee3a |
Write
Preview
Loading…
Cancel
Save