﻿/**
 * twiUI css for Bootstrap
 * @Author：feitianxinhong http://xuzhihong1987.blog.163.com/  
 * @Version：1.0.1
 * @CreateDate：2014-10-25
 * @Example: Visit http://blog.163.com/twi_fly  
 * @Copyright ©2010-2015 Tyingsoft 踏影软件开发工作室 之 Twilight/Twifly开源系列. 转载请保留本行注明.   
 * @License：Twi Framework of Tyingsoft is licensed under the MIT license.  
 * @Description：补充Bootstrap样式
 * @Require: bootstrap-3.2.0样式 
 *
 * ------------------------------------------------------------------
 * 编号    版本号      作者              修改日期        修改内容
 * ------------------------------------------------------------------
 *  1      1.0.0       feitianxinhong    2014-10-25      form表单重写样式、auto-hidden
 *  2      1.0.1       feitianxinhong    2015-02-28 
 *  3      
 *
 * ------------------------------------------------------------------
 */


/* 1.0.0新增样式*/

/*
 * 新增编辑表单使用的样式
 */
.form-group {
    margin-bottom:5px;   /*重写bootstrap样式，因弹出框高度限制，缩写间距*/
}
.form-group label{
    text-align:right;
}
.form-horizontal .form-group-sm .control-label {
    padding-top: 6px;   /*iframe解析出问题，故抄一遍bootstrap的样式来覆盖使其生效*/
}

/*
 * Code snippets
 *
 * Generated via Pygments and Jekyll, these are snippets of HTML, CSS, and JS.
 */

.highlight {
  /*display: none;*/ /* hidden by default, until >480px */
  padding: 9px 14px;
  margin-top: 14px;
  margin-bottom: 14px;
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
  border-radius: 4px;
}
.highlight pre {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  background-color: transparent;
  border: 0;
  white-space: nowrap;
}
.highlight pre code {
  font-size: inherit;
  color: #333; /* Effectively the base text color */
}
.highlight pre .lineno {
  display: inline-block;
  width: 22px;
  padding-right: 5px;
  margin-right: 10px;
  text-align: right;
  color: #bebec5;
}

/* Show code snippets when we have the space */
/*@media (min-width: 481px) {
  .highlight {
    display: block;
  }
}*/


/*图标颜色值*/
.icon-red {
    color: #dd5a43 !important;
}
.icon-green {
    color: #69aa46 !important;
}
.icon-blue {
    color: #478fca !important;
}
.icon-purple {
    color: #8e44ad !important; 
}

.auto-hidden {
        display :none;
    }
@media (min-width: 400px) {
    .auto-hidden {
        display : inline;  /*display : inherit;*/ /*2016-03-03 16:55:34  xzh bootstrap-3.3.5 兼容问题*/
    }
}

/* 1.0.1新增样式*/

.twiColLayOut {
    padding-left: 2px;
    padding-right: 2px;
}

