mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
Added default scss to bundle default theme
This commit is contained in:
8
dist/framework-structure.css
vendored
8
dist/framework-structure.css
vendored
@ -13,3 +13,11 @@ body {
|
||||
|
||||
a {
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
|
||||
|
||||
.button {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
margin: 0; }
|
||||
|
||||
7
dist/framework-theme-default.css
vendored
7
dist/framework-theme-default.css
vendored
@ -1 +1,8 @@
|
||||
@charset "UTF-8";
|
||||
.button {
|
||||
color: #333333;
|
||||
border-radius: 2px; }
|
||||
|
||||
.button-default {
|
||||
background-color: #fff;
|
||||
border: 1px solid #dddddd; }
|
||||
|
||||
31
dist/framework-with-theme.css
vendored
Normal file
31
dist/framework-with-theme.css
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
@charset "UTF-8";
|
||||
html {
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%; }
|
||||
|
||||
body {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
font: 14px/1.25 "Helvetica Neue", sans-serif; }
|
||||
|
||||
a {
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
|
||||
|
||||
.button {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
margin: 0; }
|
||||
|
||||
.button {
|
||||
color: #333333;
|
||||
border-radius: 2px; }
|
||||
|
||||
.button-default {
|
||||
background-color: #fff;
|
||||
border: 1px solid #dddddd; }
|
||||
@ -1,7 +1,8 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" href="bower_components/normalize-css/normalize.css">
|
||||
<link rel="stylesheet" href="../dist/framework.css">
|
||||
<link rel="stylesheet" href="../dist/framework-structure.css">
|
||||
<link rel="stylesheet" href="../dist/framework-theme.css">
|
||||
</head>
|
||||
<body>
|
||||
<header class="bar-header">
|
||||
@ -14,6 +15,7 @@
|
||||
<p>
|
||||
Here is some content
|
||||
</p>
|
||||
<a class="button button-default">Click me</a>
|
||||
<form>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
2
scss/framework-with-default-theme.scss
Normal file
2
scss/framework-with-default-theme.scss
Normal file
@ -0,0 +1,2 @@
|
||||
@import "framework-structure";
|
||||
@import "framework-theme-default";
|
||||
Reference in New Issue
Block a user