mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-17 06:14:54 +00:00
Restructure Sass files and folders for proper application Sass development
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
<div ng-controller="AppCtrl">
|
||||
|
||||
<md-toolbar class="md-theme-light">
|
||||
<h1 class="md-toolbar-tools">
|
||||
<span>Full Bleed</span>
|
||||
</h1>
|
||||
</md-toolbar>
|
||||
|
||||
<md-content>
|
||||
<md-list>
|
||||
<md-item ng-repeat="item in messages">
|
||||
<md-item-content>
|
||||
<div class="md-tile-content">
|
||||
<h3>{{item.what}}</h3>
|
||||
<h4>{{item.who}}</h4>
|
||||
<p>
|
||||
{{item.notes}}
|
||||
</p>
|
||||
</div>
|
||||
</md-item-content>
|
||||
<md-divider ng-if="!$last"></md-divider>
|
||||
</md-item>
|
||||
</md-list>
|
||||
</md-content>
|
||||
|
||||
<md-toolbar class="md-theme-light">
|
||||
<h1 class="md-toolbar-tools">
|
||||
<span>Inset</span>
|
||||
</h1>
|
||||
</md-toolbar>
|
||||
|
||||
<md-content>
|
||||
<md-list>
|
||||
<md-item ng-repeat="item in messages">
|
||||
<md-item-content>
|
||||
<div class="md-tile-left">
|
||||
<img ng-src="{{item.face}}" class="face" alt="{{item.who}}">
|
||||
</div>
|
||||
<div class="md-tile-content">
|
||||
<h3>{{item.what}}</h3>
|
||||
<h4>{{item.who}}</h4>
|
||||
<p>
|
||||
{{item.notes}}
|
||||
</p>
|
||||
</div>
|
||||
</md-item-content>
|
||||
<md-divider md-inset ng-if="!$last"></md-divider>
|
||||
</md-item>
|
||||
</md-list>
|
||||
</md-content>
|
||||
</div>
|
||||
@@ -0,0 +1,34 @@
|
||||
angular.module('dividerDemo1', ['ngMaterial'])
|
||||
.controller('AppCtrl', function($scope) {
|
||||
$scope.messages = [{
|
||||
face: '/img/list/60.jpeg',
|
||||
what: 'Brunch this weekend?',
|
||||
who: 'Min Li Chan',
|
||||
when: '3:08PM',
|
||||
notes: " I'll be in your neighborhood doing errands"
|
||||
}, {
|
||||
face: '/img/list/60.jpeg',
|
||||
what: 'Brunch this weekend?',
|
||||
who: 'Min Li Chan',
|
||||
when: '3:08PM',
|
||||
notes: " I'll be in your neighborhood doing errands"
|
||||
}, {
|
||||
face: '/img/list/60.jpeg',
|
||||
what: 'Brunch this weekend?',
|
||||
who: 'Min Li Chan',
|
||||
when: '3:08PM',
|
||||
notes: " I'll be in your neighborhood doing errands"
|
||||
}, {
|
||||
face: '/img/list/60.jpeg',
|
||||
what: 'Brunch this weekend?',
|
||||
who: 'Min Li Chan',
|
||||
when: '3:08PM',
|
||||
notes: " I'll be in your neighborhood doing errands"
|
||||
}, {
|
||||
face: '/img/list/60.jpeg',
|
||||
what: 'Brunch this weekend?',
|
||||
who: 'Min Li Chan',
|
||||
when: '3:08PM',
|
||||
notes: " I'll be in your neighborhood doing errands"
|
||||
}];
|
||||
});
|
||||
@@ -0,0 +1,6 @@
|
||||
.face {
|
||||
border-radius: 30px;
|
||||
border: 1px solid #ddd;
|
||||
width: 48px;
|
||||
margin: 16px;
|
||||
}
|
||||
Reference in New Issue
Block a user