admins: precompile

dev_aliyun_beta
p31729568 6 years ago
parent ca9e3b0c77
commit 392f3f9e19

@ -0,0 +1,62 @@
$(document).on('turbolinks:load', function() {
var $modal = $('.modal.admin-upload-file-modal');
if ($modal.length > 0) {
var $form = $modal.find('form.admin-upload-file-form')
var $sourceIdInput = $modal.find('input[name="source_id"]');
var $sourceTypeInput = $modal.find('input[name="source_type"]');
$modal.on('show.bs.modal', function(event){
var $link = $(event.relatedTarget);
var sourceId = $link.data('sourceId');
var sourceType = $link.data('sourceType');
$sourceIdInput.val(sourceId);
$sourceTypeInput.val(sourceType);
$modal.find('.upload-file-input').trigger('click');
});
$modal.find('.upload-file-input').on('change', function(e){
var file = $(this)[0].files[0];
if(file){
$modal.find('.file-names').html(file.name);
$modal.find('.submit-btn').trigger('click');
}
})
var formValid = function(){
if($form.find('input[name="file"]').val() == undefined || $form.find('input[name="file"]').val().length == 0){
$form.find('.error').html('请选择文件');
return false;
}
return true;
};
$modal.on('click', '.submit-btn', function(){
$form.find('.error').html('');
if (formValid()) {
var formDataString = $form.serialize();
$.ajax({
method: 'POST',
dataType: 'json',
url: '/admins/files?' + formDataString,
data: new FormData($form[0]),
processData: false,
contentType: false,
success: function(data){
$.notify({ message: '上传成功' });
$modal.trigger('upload:success', data);
$modal.modal('hide');
},
error: function(res){
var data = res.responseJSON;
$form.find('.error').html(data.message);
}
});
}
});
}
});

@ -28,6 +28,13 @@ $(document).on('turbolinks:load', function() {
data: json
})
})
$('.modal.admin-upload-file-modal').on('upload:success', function(e, data){
var $imageElement = $('.shixun-image-' + data.source_id);
$imageElement.attr('src', data.url);
$imageElement.show();
$imageElement.next().html('重新上传');
})
}
});

@ -19,6 +19,7 @@ body {
align-items: stretch;
font-size: 14px;
background: #efefef;
overflow: hidden;
}
.simple_form {

@ -1,14 +1,22 @@
input[type="checkbox"]{
font-size:18px;
}
.select2 input::-webkit-input-placeholder{
color:#ccc;
}
.select2 .select2-selection__choice{
border: 1px solid #eee !important;
}
.setting-chosen{
font-weight: 400;
font-size: 10px;
color:#333;
.admins-shixun-settings-index-page {
input[type="checkbox"]{
font-size:18px;
}
.select2 input::-webkit-input-placeholder{
color:#ccc;
}
.select2 .select2-selection__choice{
border: 1px solid #eee !important;
}
.setting-chosen{
font-weight: 400;
font-size: 10px;
color:#333;
}
.shixun-setting-image {
display: flex;
flex-direction: column;
align-items: center;
}
}

@ -20,6 +20,11 @@ label.error {
input.form-control {
font-size: 14px;
}
.input-group-prepend {
.input-group-text {
font-size: 14px;
}
}
.flex-1 {
flex: 1;

@ -0,0 +1,54 @@
class Admins::FilesController < Admins::BaseController
before_action :convert_file!, only: [:create]
def create
File.delete(file_path) if File.exist?(file_path) # 删除之前的文件
Util.write_file(@file, file_path)
render_ok(source_id: params[:source_id], source_type: params[:source_type].to_s, url: file_url)
rescue StandardError => ex
logger_error(ex)
render_error('上传失败')
end
private
def convert_file!
max_size = 10 * 1024 * 1024 # 10M
if params[:file].class == ActionDispatch::Http::UploadedFile
@file = params[:file]
render_error('请上传文件') if @file.size.zero?
render_error('文件大小超过限制') if @file.size > max_size
else
file = params[:file].to_s.strip
return render_error('请上传正确的图片') if file.blank?
@file = Util.convert_base64_image(file, max_size: max_size)
end
rescue Base64ImageConverter::Error => ex
render_error(ex.message)
end
def file_path
@_file_path ||= begin
case params[:source_type].to_s
when 'Shixun' then
disk_filename('Shixun', params[:source_id])
else
disk_filename(params[:source_type].to_s, params[:source_id].to_s)
end
end
end
def disk_filename(type, id)
File.join(storage_path, type.to_s, id.to_s)
end
def storage_path
@_storage_path ||= File.join(Rails.root, 'public', 'images', 'avatars')
end
def file_url
File.join('/images/avatars/', params[:source_type].to_s, params[:source_id].to_s)
end
end

@ -2,7 +2,7 @@
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">拒绝原因</h5>
<h5 class="modal-title">拒绝原因</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>

@ -0,0 +1,32 @@
<div class="modal fade admin-upload-file-modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title"><%= title ||= '上传文件' %></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<form class="admin-upload-file-form" enctype="multipart/form-data">
<%= hidden_field_tag(:source_type, nil) %>
<%= hidden_field_tag(:source_id, nil) %>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text">文件</span>
</div>
<div class="custom-file">
<input type="file" name="file" class="upload-file-input" id="upload-file-input">
<label class="custom-file-label file-names" for="upload-file-input">选择文件</label>
</div>
</div>
<div class="error text-danger"></div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">取消</button>
<button type="button" class="btn btn-primary submit-btn" data-disable-with="上传中...">上传</button>
</div>
</div>
</div>
</div>

@ -74,3 +74,4 @@
<%= render partial: 'admins/shixun_settings/shared/list', locals: { shixun_settings: @shixun_settings } %>
</div>
<%= render partial: 'admins/shared/modal/upload_file_modal', locals: { title: '上传图片' } %>

@ -15,19 +15,11 @@
<td>
<%= select_tag(:tag_repertoires, options_for_select(@shixun_tags,shixun.tag_repertoires.pluck(:id)),multiple:true,class:"form-control shixun-setting-form",data:{id:shixun.id},id:"tags-chosen-#{shixun.id}") %>
</td>
<td>
<!-- 图片上传,稍后添加-->
--
<!-- <a href="javascript:void(0);" id="object_upload_img_<%#= shixun.id %>" onclick="$('#upload_img_<%= shixun.id %>').click();">-->
<%#= File.exist?(disk_filename("Shixun",shixun.id)) ? "重新上传" : "上传图片" %>
<!-- </a>-->
<%# if File.exist?(disk_filename("Shixun",shixun.id)) %>
<%#= image_tag(url_to_avatar(shixun), :class => "w80 h80 fl ml5 shixun_image_show", :id => "shixun_image_show_#{shixun.id}") %>
<%# else %>
<!-- <img src="" class="w80 h80 fl ml5 shixun_image_show none" id="shixun_image_show_<%#= shixun.id %>"/>-->
<%# end %>
<td class="shixun-setting-image">
<% imageExists = File.exist?(disk_filename("Shixun",shixun.id)) %>
<% imageUrl = imageExists ? '/' + url_to_avatar(shixun) + "?#{Time.now.to_i}" : '' %>
<%= image_tag(imageUrl, width: 60, height: 40, class: "preview-image shixun-image-#{shixun.id}", data: { toggle: 'tooltip', title: '点击预览' }, style: imageExists ? '' : 'display:none') %>
<%= javascript_void_link imageExists ? '重新上传' : '上传图片', class: 'action upload-shixun-image-action', data: { source_id: shixun.id, source_type: 'Shixun', toggle: 'modal', target: '.admin-upload-file-modal' } %>
</td>
<td><%= link_to shixun.owner.try(:show_real_name),"/users/#{shixun.owner.login}",target:'_blank' %></td>
<td>

@ -1,5 +1,5 @@
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">
<a class="navbar-brand" href="/">
<img src="/images/educoder/headNavLogo.png" width="40" height="40" alt="">
</a>

@ -779,6 +779,7 @@ Rails.application.routes.draw do
namespace :admins do
get '/', to: 'dashboards#index'
resources :files, only: [:create]
resources :daily_school_statistics, only: [:index] do
get :export, on: :collection

File diff suppressed because one or more lines are too long

@ -38171,6 +38171,68 @@ $(document).on('turbolinks:load', function() {
});
}
});
$(document).on('turbolinks:load', function() {
var $modal = $('.modal.admin-upload-file-modal');
if ($modal.length > 0) {
var $form = $modal.find('form.admin-upload-file-form')
var $sourceIdInput = $modal.find('input[name="source_id"]');
var $sourceTypeInput = $modal.find('input[name="source_type"]');
$modal.on('show.bs.modal', function(event){
var $link = $(event.relatedTarget);
var sourceId = $link.data('sourceId');
var sourceType = $link.data('sourceType');
$sourceIdInput.val(sourceId);
$sourceTypeInput.val(sourceType);
$modal.find('.upload-file-input').trigger('click');
});
$modal.find('.upload-file-input').on('change', function(e){
var file = $(this)[0].files[0];
if(file){
$modal.find('.file-names').html(file.name);
$modal.find('.submit-btn').trigger('click');
}
})
var formValid = function(){
if($form.find('input[name="file"]').val() == undefined || $form.find('input[name="file"]').val().length == 0){
$form.find('.error').html('请选择文件');
return false;
}
return true;
};
$modal.on('click', '.submit-btn', function(){
$form.find('.error').html('');
if (formValid()) {
var formDataString = $form.serialize();
$.ajax({
method: 'POST',
dataType: 'json',
url: '/admins/files?' + formDataString,
data: new FormData($form[0]),
processData: false,
contentType: false,
success: function(data){
$.notify({ message: '上传成功' });
$modal.trigger('upload:success', data);
$modal.modal('hide');
},
error: function(res){
var data = res.responseJSON;
$form.find('.error').html(data.message);
}
});
}
});
}
});
$(document).on('turbolinks:load', function() {
if ($('body.admins-professional-authentications-index-page').length > 0) {
var $searchFrom = $('.professional-authentication-list-form');
@ -38389,6 +38451,13 @@ $(document).on('turbolinks:load', function() {
data: json
})
})
$('.modal.admin-upload-file-modal').on('upload:success', function(e, data){
var $imageElement = $('.shixun-image-' + data.source_id);
$imageElement.attr('src', data.url);
$imageElement.show();
$imageElement.next().html('重新上传');
})
}
});

@ -18444,27 +18444,32 @@ input.form-control {
}
/* line 24, app/assets/stylesheets/common.scss */
.input-group-prepend .input-group-text {
font-size: 14px;
}
/* line 29, app/assets/stylesheets/common.scss */
.flex-1 {
-webkit-box-flex: 1;
flex: 1;
}
/* line 28, app/assets/stylesheets/common.scss */
/* line 33, app/assets/stylesheets/common.scss */
.font-12 {
font-size: 12px !important;
}
/* line 29, app/assets/stylesheets/common.scss */
/* line 34, app/assets/stylesheets/common.scss */
.font-14 {
font-size: 14px !important;
}
/* line 30, app/assets/stylesheets/common.scss */
/* line 35, app/assets/stylesheets/common.scss */
.font-16 {
font-size: 16px !important;
}
/* line 31, app/assets/stylesheets/common.scss */
/* line 36, app/assets/stylesheets/common.scss */
.font-18 {
font-size: 18px !important;
}
@ -18763,28 +18768,39 @@ input.form-control {
color: #6c757d;
}
/* line 1, app/assets/stylesheets/admins/shixun_settings.scss */
input[type="checkbox"] {
/* line 2, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page input[type="checkbox"] {
font-size: 18px;
}
/* line 4, app/assets/stylesheets/admins/shixun_settings.scss */
.select2 input::-webkit-input-placeholder {
/* line 5, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page .select2 input::-webkit-input-placeholder {
color: #ccc;
}
/* line 7, app/assets/stylesheets/admins/shixun_settings.scss */
.select2 .select2-selection__choice {
/* line 8, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page .select2 .select2-selection__choice {
border: 1px solid #eee !important;
}
/* line 10, app/assets/stylesheets/admins/shixun_settings.scss */
.setting-chosen {
/* line 11, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page .setting-chosen {
font-weight: 400;
font-size: 10px;
color: #333;
}
/* line 17, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page .shixun-setting-image {
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-align: center;
align-items: center;
}
/* line 1, app/assets/stylesheets/admins/sidebar.scss */
#sidebar {
min-width: 200px;
@ -19106,36 +19122,37 @@ body {
align-items: stretch;
font-size: 14px;
background: #efefef;
overflow: hidden;
}
/* line 26, app/assets/stylesheets/admin.scss */
/* line 27, app/assets/stylesheets/admin.scss */
.simple_form .form-group .collection_radio_buttons {
margin-bottom: 0px;
}
/* line 30, app/assets/stylesheets/admin.scss */
/* line 31, app/assets/stylesheets/admin.scss */
.simple_form .form-group .form-check-inline {
height: calc(1.5em + 0.75rem + 2px);
}
/* line 36, app/assets/stylesheets/admin.scss */
/* line 37, app/assets/stylesheets/admin.scss */
input.form-control {
font-size: 14px;
}
/* line 40, app/assets/stylesheets/admin.scss */
/* line 41, app/assets/stylesheets/admin.scss */
.btn-default {
color: #666;
background: #e1e1e1 !important;
}
/* line 44, app/assets/stylesheets/admin.scss */
/* line 45, app/assets/stylesheets/admin.scss */
.export-absolute {
right: 20px;
position: absolute;
}
/* line 48, app/assets/stylesheets/admin.scss */
/* line 49, app/assets/stylesheets/admin.scss */
.position-r {
position: relative;
}

@ -38171,6 +38171,68 @@ $(document).on('turbolinks:load', function() {
});
}
});
$(document).on('turbolinks:load', function() {
var $modal = $('.modal.admin-upload-file-modal');
if ($modal.length > 0) {
var $form = $modal.find('form.admin-upload-file-form')
var $sourceIdInput = $modal.find('input[name="source_id"]');
var $sourceTypeInput = $modal.find('input[name="source_type"]');
$modal.on('show.bs.modal', function(event){
var $link = $(event.relatedTarget);
var sourceId = $link.data('sourceId');
var sourceType = $link.data('sourceType');
$sourceIdInput.val(sourceId);
$sourceTypeInput.val(sourceType);
$modal.find('.upload-file-input').trigger('click');
});
$modal.find('.upload-file-input').on('change', function(e){
var file = $(this)[0].files[0];
if(file){
$modal.find('.file-names').html(file.name);
$modal.find('.submit-btn').trigger('click');
}
})
var formValid = function(){
if($form.find('input[name="file"]').val() == undefined || $form.find('input[name="file"]').val().length == 0){
$form.find('.error').html('请选择文件');
return false;
}
return true;
};
$modal.on('click', '.submit-btn', function(){
$form.find('.error').html('');
if (formValid()) {
var formDataString = $form.serialize();
$.ajax({
method: 'POST',
dataType: 'json',
url: '/admins/files?' + formDataString,
data: new FormData($form[0]),
processData: false,
contentType: false,
success: function(data){
$.notify({ message: '上传成功' });
$modal.trigger('upload:success', data);
$modal.modal('hide');
},
error: function(res){
var data = res.responseJSON;
$form.find('.error').html(data.message);
}
});
}
});
}
});
$(document).on('turbolinks:load', function() {
if ($('body.admins-professional-authentications-index-page').length > 0) {
var $searchFrom = $('.professional-authentication-list-form');
@ -38389,6 +38451,13 @@ $(document).on('turbolinks:load', function() {
data: json
})
})
$('.modal.admin-upload-file-modal').on('upload:success', function(e, data){
var $imageElement = $('.shixun-image-' + data.source_id);
$imageElement.attr('src', data.url);
$imageElement.show();
$imageElement.next().html('重新上传');
})
}
});

@ -18444,27 +18444,32 @@ input.form-control {
}
/* line 24, app/assets/stylesheets/common.scss */
.input-group-prepend .input-group-text {
font-size: 14px;
}
/* line 29, app/assets/stylesheets/common.scss */
.flex-1 {
-webkit-box-flex: 1;
flex: 1;
}
/* line 28, app/assets/stylesheets/common.scss */
/* line 33, app/assets/stylesheets/common.scss */
.font-12 {
font-size: 12px !important;
}
/* line 29, app/assets/stylesheets/common.scss */
/* line 34, app/assets/stylesheets/common.scss */
.font-14 {
font-size: 14px !important;
}
/* line 30, app/assets/stylesheets/common.scss */
/* line 35, app/assets/stylesheets/common.scss */
.font-16 {
font-size: 16px !important;
}
/* line 31, app/assets/stylesheets/common.scss */
/* line 36, app/assets/stylesheets/common.scss */
.font-18 {
font-size: 18px !important;
}
@ -18763,28 +18768,39 @@ input.form-control {
color: #6c757d;
}
/* line 1, app/assets/stylesheets/admins/shixun_settings.scss */
input[type="checkbox"] {
/* line 2, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page input[type="checkbox"] {
font-size: 18px;
}
/* line 4, app/assets/stylesheets/admins/shixun_settings.scss */
.select2 input::-webkit-input-placeholder {
/* line 5, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page .select2 input::-webkit-input-placeholder {
color: #ccc;
}
/* line 7, app/assets/stylesheets/admins/shixun_settings.scss */
.select2 .select2-selection__choice {
/* line 8, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page .select2 .select2-selection__choice {
border: 1px solid #eee !important;
}
/* line 10, app/assets/stylesheets/admins/shixun_settings.scss */
.setting-chosen {
/* line 11, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page .setting-chosen {
font-weight: 400;
font-size: 10px;
color: #333;
}
/* line 17, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page .shixun-setting-image {
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-align: center;
align-items: center;
}
/* line 1, app/assets/stylesheets/admins/sidebar.scss */
#sidebar {
min-width: 200px;
@ -19106,36 +19122,37 @@ body {
align-items: stretch;
font-size: 14px;
background: #efefef;
overflow: hidden;
}
/* line 26, app/assets/stylesheets/admin.scss */
/* line 27, app/assets/stylesheets/admin.scss */
.simple_form .form-group .collection_radio_buttons {
margin-bottom: 0px;
}
/* line 30, app/assets/stylesheets/admin.scss */
/* line 31, app/assets/stylesheets/admin.scss */
.simple_form .form-group .form-check-inline {
height: calc(1.5em + 0.75rem + 2px);
}
/* line 36, app/assets/stylesheets/admin.scss */
/* line 37, app/assets/stylesheets/admin.scss */
input.form-control {
font-size: 14px;
}
/* line 40, app/assets/stylesheets/admin.scss */
/* line 41, app/assets/stylesheets/admin.scss */
.btn-default {
color: #666;
background: #e1e1e1 !important;
}
/* line 44, app/assets/stylesheets/admin.scss */
/* line 45, app/assets/stylesheets/admin.scss */
.export-absolute {
right: 20px;
position: absolute;
}
/* line 48, app/assets/stylesheets/admin.scss */
/* line 49, app/assets/stylesheets/admin.scss */
.position-r {
position: relative;
}
@ -19425,27 +19442,38 @@ input.form-control {
.admins-shixun-authorizations-index-page .shixun-authorization-list-container span.apply-status-3 {
color: #6c757d;
}
/* line 1, app/assets/stylesheets/admins/shixun_settings.scss */
input[type="checkbox"] {
/* line 2, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page input[type="checkbox"] {
font-size: 18px;
}
/* line 4, app/assets/stylesheets/admins/shixun_settings.scss */
.select2 input::-webkit-input-placeholder {
/* line 5, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page .select2 input::-webkit-input-placeholder {
color: #ccc;
}
/* line 7, app/assets/stylesheets/admins/shixun_settings.scss */
.select2 .select2-selection__choice {
/* line 8, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page .select2 .select2-selection__choice {
border: 1px solid #eee !important;
}
/* line 10, app/assets/stylesheets/admins/shixun_settings.scss */
.setting-chosen {
/* line 11, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page .setting-chosen {
font-weight: 400;
font-size: 10px;
color: #333;
}
/* line 17, app/assets/stylesheets/admins/shixun_settings.scss */
.admins-shixun-settings-index-page .shixun-setting-image {
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-align: center;
align-items: center;
}
/* line 1, app/assets/stylesheets/admins/sidebar.scss */
#sidebar {
min-width: 200px;
@ -48622,27 +48650,32 @@ input.form-control {
}
/* line 24, app/assets/stylesheets/common.scss */
.input-group-prepend .input-group-text {
font-size: 14px;
}
/* line 29, app/assets/stylesheets/common.scss */
.flex-1 {
-webkit-box-flex: 1;
flex: 1;
}
/* line 28, app/assets/stylesheets/common.scss */
/* line 33, app/assets/stylesheets/common.scss */
.font-12 {
font-size: 12px !important;
}
/* line 29, app/assets/stylesheets/common.scss */
/* line 34, app/assets/stylesheets/common.scss */
.font-14 {
font-size: 14px !important;
}
/* line 30, app/assets/stylesheets/common.scss */
/* line 35, app/assets/stylesheets/common.scss */
.font-16 {
font-size: 16px !important;
}
/* line 31, app/assets/stylesheets/common.scss */
/* line 36, app/assets/stylesheets/common.scss */
.font-18 {
font-size: 18px !important;
}
@ -49028,27 +49061,32 @@ input.form-control {
}
/* line 24, app/assets/stylesheets/common.scss */
.input-group-prepend .input-group-text {
font-size: 14px;
}
/* line 29, app/assets/stylesheets/common.scss */
.flex-1 {
-webkit-box-flex: 1;
flex: 1;
}
/* line 28, app/assets/stylesheets/common.scss */
/* line 33, app/assets/stylesheets/common.scss */
.font-12 {
font-size: 12px !important;
}
/* line 29, app/assets/stylesheets/common.scss */
/* line 34, app/assets/stylesheets/common.scss */
.font-14 {
font-size: 14px !important;
}
/* line 30, app/assets/stylesheets/common.scss */
/* line 35, app/assets/stylesheets/common.scss */
.font-16 {
font-size: 16px !important;
}
/* line 31, app/assets/stylesheets/common.scss */
/* line 36, app/assets/stylesheets/common.scss */
.font-18 {
font-size: 18px !important;
}

@ -15757,27 +15757,32 @@ input.form-control {
}
/* line 24, app/assets/stylesheets/common.scss */
.input-group-prepend .input-group-text {
font-size: 14px;
}
/* line 29, app/assets/stylesheets/common.scss */
.flex-1 {
-webkit-box-flex: 1;
flex: 1;
}
/* line 28, app/assets/stylesheets/common.scss */
/* line 33, app/assets/stylesheets/common.scss */
.font-12 {
font-size: 12px !important;
}
/* line 29, app/assets/stylesheets/common.scss */
/* line 34, app/assets/stylesheets/common.scss */
.font-14 {
font-size: 14px !important;
}
/* line 30, app/assets/stylesheets/common.scss */
/* line 35, app/assets/stylesheets/common.scss */
.font-16 {
font-size: 16px !important;
}
/* line 31, app/assets/stylesheets/common.scss */
/* line 36, app/assets/stylesheets/common.scss */
.font-18 {
font-size: 18px !important;
}
Loading…
Cancel
Save