~daker/ubuntu-html5-theme/fix.1286833

« back to all changes in this revision

Viewing changes to 0.1/ambiance/css/sass/mixins.scss

  • Committer: Alexandre Abreu
  • Date: 2014-02-24 17:04:47 UTC
  • mfrom: (136.2.4 sass-setup)
  • Revision ID: alexandre.abreu@canonical.com-20140224170447-8fvba6ef2m06w6yr
MergeĀ lp:~ya-bo-ng/ubuntu-html5-theme/sass-setup

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Adnane Belmadiaf <daker@ubuntu.com>
 
3
 * License granted by Canonical Limited
 
4
 *
 
5
 * This file is part of ubuntu-html5-ui-toolkit.
 
6
 *
 
7
 * This package is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU Lesser General Public License as
 
9
 * published by the Free Software Foundation; either version 3 of the
 
10
 * License, or
 
11
 * (at your option) any later version.
 
12
 
 
13
 * This package is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * GNU General Public License for more details.
 
17
 
 
18
 * You should have received a copy of the GNU Lesser General Public
 
19
 * License along with this program. If not, see
 
20
 * <http://www.gnu.org/licenses/>
 
21
 */
 
22
 
 
23
@mixin box_sizing($type: border-box) {
 
24
        -webkit-box-sizing: $type;
 
25
        box-sizing:         $type;
 
26
}
 
27
 
 
28
@mixin box_shadow($type: inset 0 1px 1px rgba(0, 0, 0, 0.1)) {
 
29
        -webkit-box-shadow: $type;
 
30
    box-shadow:                 $type;
 
31
}
 
 
b'\\ No newline at end of file'