commit
de9e0d6525
@ -0,0 +1,2 @@
|
||||
// Place all the behaviors and hooks related to the matching controller here.
|
||||
// All this logic will automatically be available in application.js.
|
@ -0,0 +1,3 @@
|
||||
// Place all the styles related to the users/banks controller here.
|
||||
// They will automatically be included in application.css.
|
||||
// You can use Sass (SCSS) here: http://sass-lang.com/
|
@ -1,5 +1,5 @@
|
||||
module CourseDecorator
|
||||
def can_visited?
|
||||
is_public == 1 || User.current.admin? || User.current.member_of_course?(self)
|
||||
is_public == 1 || User.current.admin_or_business? || User.current.member_of_course?(self)
|
||||
end
|
||||
end
|
@ -0,0 +1,2 @@
|
||||
module Users::BanksHelper
|
||||
end
|
@ -0,0 +1,26 @@
|
||||
class CommitExercsieNotifyJobJob < ApplicationJob
|
||||
queue_as :notify
|
||||
|
||||
def perform(exercise_id, user_id)
|
||||
exercise = Exercise.find_by(id: exercise_id)
|
||||
user = User.find_by(id: user_id)
|
||||
return if [exercise, user].any?(&:blank?)
|
||||
course = exercise.course
|
||||
|
||||
attrs = %i[user_id trigger_user_id container_id container_type parent_container_id parent_container_type
|
||||
belong_container_id belong_container_type tiding_type viewed status created_at updated_at]
|
||||
|
||||
same_attrs = {
|
||||
trigger_user_id: user.id,
|
||||
container_id: exercise.id, container_type: 'Exercise',
|
||||
parent_container_id: exercise.id, parent_container_type: 'CommitExercise',
|
||||
belong_container_id: course.id, belong_container_type: 'Course',
|
||||
tiding_type: 'Exercise', viewed: 0, status: 0
|
||||
}
|
||||
Tiding.bulk_insert(*attrs) do |worker|
|
||||
course.course_member(user).member_teachers.each do |teacher|
|
||||
worker.add same_attrs.merge(user_id: teacher.user_id)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
@ -0,0 +1,26 @@
|
||||
class CommitPollNotifyJobJob < ApplicationJob
|
||||
queue_as :notify
|
||||
|
||||
def perform(poll_id, user_id)
|
||||
poll = Poll.find_by(id: poll_id)
|
||||
user = User.find_by(id: user_id)
|
||||
return if [poll, user].any?(&:blank?)
|
||||
course = poll.course
|
||||
|
||||
attrs = %i[user_id trigger_user_id container_id container_type parent_container_id parent_container_type
|
||||
belong_container_id belong_container_type tiding_type viewed status created_at updated_at]
|
||||
|
||||
same_attrs = {
|
||||
trigger_user_id: user.id,
|
||||
container_id: poll.id, container_type: 'Poll',
|
||||
parent_container_id: poll.id, parent_container_type: 'CommitPoll',
|
||||
belong_container_id: course.id, belong_container_type: 'Course',
|
||||
tiding_type: 'Poll', viewed: 0, status: 0
|
||||
}
|
||||
Tiding.bulk_insert(*attrs) do |worker|
|
||||
course.course_member(user).member_teachers.each do |teacher|
|
||||
worker.add same_attrs.merge(user_id: teacher.user_id)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
File diff suppressed because it is too large
Load Diff
@ -1 +1,2 @@
|
||||
json.course_id @course.id
|
||||
json.course_id @course.id
|
||||
json.first_category_url module_url(@course.none_hidden_course_modules.first, @course)
|
@ -0,0 +1,2 @@
|
||||
json.(@reply, :id, :subject, :content, :hidden, :forum_id, :author_id, :all_replies_count, :is_md, :parent_id, :root_id,
|
||||
:reward, :sticky, :updated_at, :created_at, :viewed_count)
|
@ -1,11 +1,31 @@
|
||||
json.extract! tiding, :id, :status, :viewed, :user_id, :tiding_type, :container_id, :container_type, :parent_container_id, :parent_container_type
|
||||
json.extract! tiding, :id, :status, :viewed, :user_id, :tiding_type, :container_id, :container_type,
|
||||
:parent_container_id, :parent_container_type, :belong_container_id, :belong_container_type
|
||||
json.content tiding.content
|
||||
|
||||
json.identifier tiding.identifier
|
||||
json.auth_type tiding.container_type == 'ApplyUserAuthentication' ? tiding.container.auth_type : nil
|
||||
|
||||
homework_type = nil
|
||||
if tiding.container_type == 'HomeworkCommon'
|
||||
homework_type = tiding.container.homework_type rescue nil
|
||||
end
|
||||
if homework_type.blank? && tiding.parent_container_type == 'HomeworkCommon'
|
||||
homework_type = tiding.parent_container.homework_type rescue nil
|
||||
end
|
||||
json.homework_type homework_type
|
||||
|
||||
json.time tiding.how_long_time
|
||||
json.new_tiding tiding.unread?(@onclick_time)
|
||||
|
||||
json.trigger_user do
|
||||
json.partial! 'users/user_simple', user: tiding.trigger_user_id.zero? ? User.find(1) : tiding.trigger_user
|
||||
if tiding.trigger_user_id.zero?
|
||||
json.id 0
|
||||
json.name "系统"
|
||||
json.login ""
|
||||
json.image_url "educoder/systemLogo.png"
|
||||
else
|
||||
json.partial! 'users/user_simple', user: tiding.trigger_user
|
||||
end
|
||||
end
|
||||
|
||||
json.attachments tiding.attachments, partial: 'attachments/attachment_small', as: :attachment
|
||||
|
@ -1,7 +0,0 @@
|
||||
class AddIndexToUser < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
# add_index :users, :login, unique: true
|
||||
# add_index :users, :mail, unique: true
|
||||
# add_index :users, :phone, unique: true
|
||||
end
|
||||
end
|
@ -0,0 +1,12 @@
|
||||
class AddPraisesCountToMemos < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_column :memos, :praises_count, :integer, :default => 0
|
||||
|
||||
memos = Memo.includes(:praise_treads).all
|
||||
memos.find_each do |m|
|
||||
puts("####{m.id}")
|
||||
praises_count = m.praise_treads.select{|pt| pt.praise_or_tread == 1}.count
|
||||
m.update_column(:praises_count, praises_count)
|
||||
end
|
||||
end
|
||||
end
|
@ -0,0 +1,10 @@
|
||||
class AddPraisesCountToLibraries < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
# add_column :libraries, :praises_count, :integer, :default => 0
|
||||
#
|
||||
# Library.find_each do |library|
|
||||
# praises_count = library.praise_treads.count
|
||||
# library.update_column(:praises_count, praises_count)
|
||||
# end
|
||||
end
|
||||
end
|
@ -0,0 +1,5 @@
|
||||
class TranferTidingData < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
Tiding.where(container_type: 'ApplyAddSchool').update_all(container_type: 'ApplyAddSchools')
|
||||
end
|
||||
end
|
@ -0,0 +1,7 @@
|
||||
class SyncIndexToUsers < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_index :users, :login, unique: true
|
||||
add_index :users, :mail, unique: true
|
||||
add_index :users, :phone, unique: true
|
||||
end
|
||||
end
|
@ -0,0 +1,6 @@
|
||||
class MigrateAnonymousTidingType < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
Tiding.where(container_type: "StudentWorksScore", extra: "3").update_all(tiding_type: "System", trigger_user_id: 0)
|
||||
Tiding.where(container_type: "StudentWorksScoresAppeal", parent_container_type: "StudentWork", tiding_type: "HomeworkCommon").update_all(tiding_type: "System", trigger_user_id: 0)
|
||||
end
|
||||
end
|
@ -0,0 +1,7 @@
|
||||
class AddExecTimeToEvaluateRecords < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
# remove_columns :evaluate_records, :exec_time if EvaluateRecord.first.attributes.include?("exec_time")
|
||||
#
|
||||
# add_column :evaluate_records, :exec_time, :integer
|
||||
end
|
||||
end
|
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="RUBY_MODULE" version="4">
|
||||
<component name="ModuleRunConfigurationManager">
|
||||
<shared />
|
||||
</component>
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$USER_HOME$/eduplus2/public/admin/Coco" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Encoding" addBOMForNewFiles="with NO BOM" />
|
||||
</project>
|
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="JavaScriptSettings">
|
||||
<option name="languageLevel" value="ES6" />
|
||||
</component>
|
||||
<component name="ProjectRootManager" version="2" project-jdk-name="ruby-2.3.7-p456" project-jdk-type="RUBY_SDK" />
|
||||
</project>
|
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/Coco.iml" filepath="$PROJECT_DIR$/.idea/Coco.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
|
||||
</component>
|
||||
</project>
|
@ -0,0 +1,492 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="bbfdfebc-59ed-4b64-8f87-8e0b450714d6" name="Default Changelist" comment="">
|
||||
<change beforePath="$PROJECT_DIR$/404.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/500.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/advanced-forms.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/alerts.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/css/style-responsive.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/css/style.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/apple-touch-icon-114x114.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/apple-touch-icon-120x120.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/apple-touch-icon-144x144.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/apple-touch-icon-152x152.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/apple-touch-icon-57x57.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/apple-touch-icon-72x72.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/apple-touch-icon-76x76.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/apple-touch-icon.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/favicon.ico" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/gmap/m1.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/gmap/m2.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/gmap/m3.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/inv-logo.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/login-logo.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/img/logo.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/apps/calculator.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/apps/notes.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/apps/todo.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/init.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/advanced-forms.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/calendar.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/datatables.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/form-validation.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/form-wizard.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/forms.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/google-maps.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/index.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/index2.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/lockscreen.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/morris-charts.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/nested-list.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/new-message.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/notifications.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/other-charts.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/rickshaw-charts.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/sparkline-charts.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/tabs-accordions.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/js/pages/vector-maps.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/animate-css/animate.min.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-bootbox/bootbox.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-calendar/css/bic_calendar.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-calendar/js/bic_calendar.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-datepicker/css/datepicker.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-datepicker/js/bootstrap-datepicker.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-fileinput/bootstrap.file-input.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-inputmask/inputmask.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-select/bootstrap-select.min.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-select/bootstrap-select.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-select2/select2-spinner.gif" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-select2/select2.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-select2/select2.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-select2/select2.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-typeahead/bootstrap3-typeahead.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-validator/css/bootstrapValidator.min.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-validator/js/bootstrapValidator.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-xeditable/css/bootstrap-editable.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-xeditable/demo/demo-mock.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-xeditable/demo/jquery.mockjax.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-xeditable/img/clear.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-xeditable/img/loading.gif" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap-xeditable/js/bootstrap-editable.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap/css/bootstrap.min.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap/fonts/glyphicons-halflings-regular.eot" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap/fonts/glyphicons-halflings-regular.svg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap/fonts/glyphicons-halflings-regular.ttf" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap/fonts/glyphicons-halflings-regular.woff" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/bootstrap/js/bootstrap.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/ckeditor/adapters/jquery.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/ckeditor/ckeditor.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/d3/d3.v3.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/dropzone/css/dropzone.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/dropzone/dropzone.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/dropzone/images/spritemap.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/dropzone/images/spritemap@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/fastclick/fastclick.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/font-awesome/css/font-awesome.min.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/font-awesome/fonts/FontAwesome.otf" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/font-awesome/fonts/fontawesome-webfont.eot" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/font-awesome/fonts/fontawesome-webfont.svg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/font-awesome/fonts/fontawesome-webfont.ttf" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/font-awesome/fonts/fontawesome-webfont.woff" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/fontello/css/fontello.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/fullcalendar/fullcalendar.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/fullcalendar/fullcalendar.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/ios7-switch/ios7-switch.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/ios7-switch/ios7.switch.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-animate-numbers/jquery.animateNumbers.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-blockui/jquery.blockUI.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-clndr/moment-2.5.1.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-clock/clock.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-clock/clock.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-datatables/css/dataTables.bootstrap.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-datatables/extensions/TableTools/css/dataTables.tableTools.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-datatables/extensions/TableTools/images/background.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-datatables/extensions/TableTools/images/collection.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-datatables/extensions/TableTools/images/collection_hover.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-datatables/extensions/TableTools/js/dataTables.tableTools.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-datatables/images/sort_asc.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-datatables/images/sort_asc_disabled.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-datatables/images/sort_both.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-datatables/images/sort_desc.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-datatables/images/sort_desc_disabled.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-datatables/js/dataTables.bootstrap.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-datatables/js/jquery.dataTables.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-detectmobile/detect.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-easypiechart/jquery.easy-pie-chart.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-easypiechart/jquery.easypiechart.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-gmap3/gmap3.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/icheck.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/all.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/_all.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/aero.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/aero@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/blue.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/blue@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/flat.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/flat@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/green.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/green@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/grey.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/grey@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/orange.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/orange@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/pink.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/pink@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/purple.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/purple@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/red.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/red@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/yellow.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/flat/yellow@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/futurico/futurico.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/futurico/futurico.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/futurico/futurico@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/line/_all.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/line/line.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/line/line@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/_all.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/aero.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/aero@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/blue.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/blue@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/green.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/green@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/grey.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/grey@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/minimal.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/minimal@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/orange.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/orange@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/pink.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/pink@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/purple.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/purple@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/red.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/red@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/yellow.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/minimal/yellow@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/polaris/polaris.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/polaris/polaris.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/polaris/polaris@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/_all.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/aero.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/aero@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/blue.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/blue@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/green.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/green@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/grey.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/grey@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/orange.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/orange@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/pink.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/pink@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/purple.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/purple@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/red.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/red@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/square.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/square@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/yellow.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-icheck/skins/square/yellow@2x.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-jvectormap/css/jquery-jvectormap-1.2.2.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-jvectormap/js/jquery-jvectormap-1.2.2.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-jvectormap/js/jquery-jvectormap-europe-mill-en.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-jvectormap/js/jquery-jvectormap-uk-mill-en.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-jvectormap/js/jquery-jvectormap-us-aea-en.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-jvectormap/js/jquery-jvectormap-us-il-chicago-mill-en.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-jvectormap/js/jquery-jvectormap-world-mill-en.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-knob/jquery.knob.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-knob/jquery.knob.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-nestable/jquery.nestable.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-nestable/jquery.nestable.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-notifyjs/notify.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-notifyjs/styles/metro/notify-metro.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-notifyjs/styles/metro/notify-metro.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-slimscroll/jquery.slimscroll.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-sparkline/jquery-sparkline.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-ui-touch/jquery.ui.touch-punch.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-weather/artill_clean_icons-webfont.eot" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-weather/artill_clean_icons-webfont.svg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-weather/artill_clean_icons-webfont.ttf" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-weather/artill_clean_icons-webfont.woff" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-weather/jquery.simpleWeather-2.6.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-weather/simpleweather.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery-wizard/jquery.easyWizard.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jquery/jquery-1.11.1.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jqueryui/jquery-ui-1.10.4.custom.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jqueryui/ui-lightness/images/animated-overlay.gif" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jqueryui/ui-lightness/images/ui-icons_222222_256x240.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jqueryui/ui-lightness/images/ui-icons_ffffff_256x240.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/jqueryui/ui-lightness/jquery-ui-1.10.4.custom.min.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/magnific-popup/jquery.magnific-popup.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/magnific-popup/magnific-popup.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/morrischart/morris.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/morrischart/morris.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/nifty-modal/css/component.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/nifty-modal/js/classie.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/nifty-modal/js/modalEffects.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/pace/pace.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/pace/pace.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/prettify/github.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/prettify/prettify.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/raphael/raphael-min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/rickshaw/rickshaw.min.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/rickshaw/rickshaw.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/sortable/sortable-theme-bootstrap.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/sortable/sortable.min.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/summernote/summernote.css" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/assets/libs/summernote/summernote.js" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/blank.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/buttons.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/calendar.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/datatables.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/form-uploads.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/form-validation.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/form-wizard.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/forms.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/gallery.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/google-maps.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/grid.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/icons.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/big/img001.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/big/img002.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/big/img003.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/big/img004.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/big/img005.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/big/img006.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/big/img007.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/big/img008.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/big/img009.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/big/img010.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/small/img001_small.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/small/img002_small.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/small/img003_small.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/small/img004_small.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/small/img005_small.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/small/img006_small.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/small/img007_small.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/small/img008_small.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/small/img009_small.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/small/img010_small.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/stock/1epgUO0.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/users/chat/1.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/users/chat/19.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/users/chat/2.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/users/chat/3.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/users/chat/4.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/users/chat/5.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/users/chat/6.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/users/default-user.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/users/user-100.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/users/user-256.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/users/user-35.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/images/weather/weather-bg.jpg" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/inbox.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/index.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/index2.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/invoice.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/lockscreen.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/login.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/maintenance.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/modals.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/morris-charts.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/nested-list.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/new-message.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/notifications.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/other-charts.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/portlets.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/profile.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/progress-bars.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/read-message.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/register.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/rickshaw-charts.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/screenshot.png" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/sparkline-charts.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/tables.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/tabs-accordions.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/typography.html" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/vector-maps.html" beforeDir="false" />
|
||||
</list>
|
||||
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
||||
<option name="LAST_RESOLUTION" value="IGNORE" />
|
||||
</component>
|
||||
<component name="FileEditorManager">
|
||||
<leaf>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$USER_HOME$/eduplus2/public/admin/Coco/404.html">
|
||||
<provider selected="true" editor-type-id="text-editor" />
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$USER_HOME$/eduplus2/public/admin/Coco/login.html">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="375">
|
||||
<caret line="20" column="26" selection-start-line="20" selection-start-column="20" selection-end-line="20" selection-end-column="26" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$USER_HOME$/eduplus2/public/admin/Coco/sparkline-charts.html">
|
||||
<provider selected="true" editor-type-id="text-editor" />
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$USER_HOME$/eduplus2/public/admin/Coco/tables.html">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="-931" />
|
||||
</provider>
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="true">
|
||||
<entry file="file://$USER_HOME$/eduplus2/public/admin/Coco/other-charts.html">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="-1318">
|
||||
<caret line="29" column="38" selection-start-line="29" selection-start-column="38" selection-end-line="29" selection-end-column="38" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$USER_HOME$/eduplus2/public/admin/Coco/invoice.html">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="-1024" />
|
||||
</provider>
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$USER_HOME$/eduplus2/public/admin/Coco/lockscreen.html">
|
||||
<provider selected="true" editor-type-id="text-editor" />
|
||||
</entry>
|
||||
</file>
|
||||
</leaf>
|
||||
</component>
|
||||
<component name="Git.Settings">
|
||||
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$/../.." />
|
||||
</component>
|
||||
<component name="JsFlowSettings">
|
||||
<service-enabled>true</service-enabled>
|
||||
<exe-path />
|
||||
<other-services-enabled>true</other-services-enabled>
|
||||
<auto-save>true</auto-save>
|
||||
</component>
|
||||
<component name="ProjectFrameBounds" extendedState="6">
|
||||
<option name="x" value="190" />
|
||||
<option name="y" value="103" />
|
||||
<option name="width" value="1440" />
|
||||
<option name="height" value="810" />
|
||||
</component>
|
||||
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
||||
<component name="ProjectView">
|
||||
<navigator proportions="" version="1">
|
||||
<foldersAlwaysOnTop value="true" />
|
||||
</navigator>
|
||||
<panes>
|
||||
<pane id="ProjectPane" />
|
||||
<pane id="Scope" />
|
||||
</panes>
|
||||
</component>
|
||||
<component name="PropertiesComponent">
|
||||
<property name="WebServerToolWindowFactoryState" value="false" />
|
||||
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
||||
<property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
|
||||
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
|
||||
<property name="settings.editor.selected.configurable" value="Settings.JavaScript" />
|
||||
</component>
|
||||
<component name="RunDashboard">
|
||||
<option name="ruleStates">
|
||||
<list>
|
||||
<RuleState>
|
||||
<option name="name" value="ConfigurationTypeDashboardGroupingRule" />
|
||||
</RuleState>
|
||||
<RuleState>
|
||||
<option name="name" value="StatusDashboardGroupingRule" />
|
||||
</RuleState>
|
||||
</list>
|
||||
</option>
|
||||
</component>
|
||||
<component name="SvnConfiguration">
|
||||
<configuration />
|
||||
</component>
|
||||
<component name="TaskManager">
|
||||
<task active="true" id="Default" summary="Default task">
|
||||
<changelist id="bbfdfebc-59ed-4b64-8f87-8e0b450714d6" name="Default Changelist" comment="" />
|
||||
<created>1564991764284</created>
|
||||
<option name="number" value="Default" />
|
||||
<option name="presentableId" value="Default" />
|
||||
<updated>1564991764284</updated>
|
||||
<workItem from="1564991765742" duration="1047000" />
|
||||
</task>
|
||||
<servers />
|
||||
</component>
|
||||
<component name="TimeTrackingManager">
|
||||
<option name="totallyTimeSpent" value="1047000" />
|
||||
</component>
|
||||
<component name="ToolWindowManager">
|
||||
<frame x="0" y="23" width="1440" height="810" extended-state="6" />
|
||||
<layout>
|
||||
<window_info id="Favorites" side_tool="true" />
|
||||
<window_info content_ui="combo" id="Project" order="0" visible="true" weight="0.14306152" />
|
||||
<window_info id="Structure" order="1" side_tool="true" weight="0.25" />
|
||||
<window_info anchor="bottom" id="Docker" show_stripe_button="false" />
|
||||
<window_info anchor="bottom" id="Database Changes" />
|
||||
<window_info anchor="bottom" id="Version Control" />
|
||||
<window_info active="true" anchor="bottom" id="Terminal" visible="true" weight="0.3286908" />
|
||||
<window_info anchor="bottom" id="Event Log" side_tool="true" />
|
||||
<window_info anchor="bottom" id="Message" order="0" />
|
||||
<window_info anchor="bottom" id="Find" order="1" />
|
||||
<window_info anchor="bottom" id="Run" order="2" />
|
||||
<window_info anchor="bottom" id="Debug" order="3" weight="0.4" />
|
||||
<window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
|
||||
<window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
|
||||
<window_info anchor="bottom" id="TODO" order="6" />
|
||||
<window_info anchor="right" id="Database" />
|
||||
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
|
||||
<window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
|
||||
<window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
|
||||
</layout>
|
||||
</component>
|
||||
<component name="TypeScriptGeneratedFilesManager">
|
||||
<option name="version" value="1" />
|
||||
</component>
|
||||
<component name="editorHistoryManager">
|
||||
<entry file="file://$USER_HOME$/eduplus2/public/admin/Coco/404.html">
|
||||
<provider selected="true" editor-type-id="text-editor" />
|
||||
</entry>
|
||||
<entry file="file://$USER_HOME$/eduplus2/public/admin/Coco/invoice.html">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="-1024" />
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$USER_HOME$/eduplus2/public/admin/Coco/lockscreen.html">
|
||||
<provider selected="true" editor-type-id="text-editor" />
|
||||
</entry>
|
||||
<entry file="file://$USER_HOME$/eduplus2/public/admin/Coco/login.html">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="375">
|
||||
<caret line="20" column="26" selection-start-line="20" selection-start-column="20" selection-end-line="20" selection-end-column="26" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$USER_HOME$/eduplus2/public/admin/Coco/sparkline-charts.html">
|
||||
<provider selected="true" editor-type-id="text-editor" />
|
||||
</entry>
|
||||
<entry file="file://$USER_HOME$/eduplus2/public/admin/Coco/tables.html">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="-931" />
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$USER_HOME$/eduplus2/public/admin/Coco/other-charts.html">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="-1318">
|
||||
<caret line="29" column="38" selection-start-line="29" selection-start-column="38" selection-end-line="29" selection-end-column="38" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
</component>
|
||||
</project>
|
@ -0,0 +1,156 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>404 Not Found | Coco - Responsive Bootstrap Admin Template</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="description" content="">
|
||||
<meta name="keywords" content="coco bootstrap template, coco admin, bootstrap,admin template, bootstrap admin,">
|
||||
<meta name="author" content="Huban Creative">
|
||||
|
||||
<!-- Base Css Files -->
|
||||
<link href="assets/libs/jqueryui/ui-lightness/jquery-ui-1.10.4.custom.min.css" rel="stylesheet" />
|
||||
<link href="assets/libs/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
|
||||
<link href="assets/libs/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
|
||||
<link href="assets/libs/fontello/css/fontello.css" rel="stylesheet" />
|
||||
<link href="assets/libs/animate-css/animate.min.css" rel="stylesheet" />
|
||||
<link href="assets/libs/nifty-modal/css/component.css" rel="stylesheet" />
|
||||
<link href="assets/libs/magnific-popup/magnific-popup.css" rel="stylesheet" />
|
||||
<link href="assets/libs/ios7-switch/ios7-switch.css" rel="stylesheet" />
|
||||
<link href="assets/libs/pace/pace.css" rel="stylesheet" />
|
||||
<link href="assets/libs/sortable/sortable-theme-bootstrap.css" rel="stylesheet" />
|
||||
<link href="assets/libs/bootstrap-datepicker/css/datepicker.css" rel="stylesheet" />
|
||||
<link href="assets/libs/jquery-icheck/skins/all.css" rel="stylesheet" />
|
||||
<!-- Code Highlighter for Demo -->
|
||||
<link href="assets/libs/prettify/github.css" rel="stylesheet" />
|
||||
|
||||
<!-- Extra CSS Libraries Start -->
|
||||
<link href="assets/css/style.css" rel="stylesheet" type="text/css" />
|
||||
<!-- Extra CSS Libraries End -->
|
||||
<link href="assets/css/style-responsive.css" rel="stylesheet" />
|
||||
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
<link rel="shortcut icon" href="assets/img/favicon.ico">
|
||||
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png" />
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="assets/img/apple-touch-icon-57x57.png" />
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/apple-touch-icon-72x72.png" />
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/apple-touch-icon-76x76.png" />
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="assets/img/apple-touch-icon-114x114.png" />
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="assets/img/apple-touch-icon-120x120.png" />
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="assets/img/apple-touch-icon-144x144.png" />
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="assets/img/apple-touch-icon-152x152.png" />
|
||||
</head>
|
||||
<body class="fixed-left full-content">
|
||||
<!-- Modal Start -->
|
||||
<!-- Modal Task Progress -->
|
||||
<div class="md-modal md-3d-flip-vertical" id="task-progress">
|
||||
<div class="md-content">
|
||||
<h3><strong>Task Progress</strong> Information</h3>
|
||||
<div>
|
||||
<p>CLEANING BUGS</p>
|
||||
<div class="progress progress-xs for-modal">
|
||||
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
|
||||
<span class="sr-only">80% Complete</span>
|
||||
</div>
|
||||
</div>
|
||||
<p>POSTING SOME STUFF</p>
|
||||
<div class="progress progress-xs for-modal">
|
||||
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 65%">
|
||||
<span class="sr-only">65% Complete</span>
|
||||
</div>
|
||||
</div>
|
||||
<p>BACKUP DATA FROM SERVER</p>
|
||||
<div class="progress progress-xs for-modal">
|
||||
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 95%">
|
||||
<span class="sr-only">95% Complete</span>
|
||||
</div>
|
||||
</div>
|
||||
<p>RE-DESIGNING WEB APPLICATION</p>
|
||||
<div class="progress progress-xs for-modal">
|
||||
<div class="progress-bar progress-bar-primary" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 100%">
|
||||
<span class="sr-only">100% Complete</span>
|
||||
</div>
|
||||
</div>
|
||||
<p class="text-center">
|
||||
<button class="btn btn-danger btn-sm md-close">Close</button>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Modal Logout -->
|
||||
<div class="md-modal md-just-me" id="logout-modal">
|
||||
<div class="md-content">
|
||||
<h3><strong>Logout</strong> Confirmation</h3>
|
||||
<div>
|
||||
<p class="text-center">Are you sure want to logout from this awesome system?</p>
|
||||
<p class="text-center">
|
||||
<button class="btn btn-danger md-close">Nope!</button>
|
||||
<a href="login.html" class="btn btn-success md-close">Yeah, I'm sure</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- Modal End -->
|
||||
|
||||
<!-- Begin page -->
|
||||
<div class="container">
|
||||
<div class="full-content-center animated flipInX">
|
||||
<h1>404</h1>
|
||||
<h2>The page you are looking for is definitely not this!</h2><br>
|
||||
<p class="text-lightblue-2">You better try our awesome search:</p>
|
||||
<div class="row">
|
||||
<div class="icon-added input-group col-sm-8 col-sm-offset-2">
|
||||
<i class="fa fa-search"></i>
|
||||
<input type="text" class="form-control">
|
||||
<span class="input-group-btn">
|
||||
<button class="btn btn-success" type="button">Search</button>
|
||||
</span>
|
||||
</div>
|
||||
</div><br>
|
||||
<a class="btn btn-primary btn-sm" href="index.html"><i class="fa fa-angle-left"></i> Back to Dashboard</a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End of page -->
|
||||
<!-- the overlay modal element -->
|
||||
<div class="md-overlay"></div>
|
||||
<!-- End of eoverlay modal -->
|
||||
<script>
|
||||
var resizefunc = [];
|
||||
</script>
|
||||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
||||
<script src="assets/libs/jquery/jquery-1.11.1.min.js"></script>
|
||||
<script src="assets/libs/bootstrap/js/bootstrap.min.js"></script>
|
||||
<script src="assets/libs/jqueryui/jquery-ui-1.10.4.custom.min.js"></script>
|
||||
<script src="assets/libs/jquery-ui-touch/jquery.ui.touch-punch.min.js"></script>
|
||||
<script src="assets/libs/jquery-detectmobile/detect.js"></script>
|
||||
<script src="assets/libs/jquery-animate-numbers/jquery.animateNumbers.js"></script>
|
||||
<script src="assets/libs/ios7-switch/ios7.switch.js"></script>
|
||||
<script src="assets/libs/fastclick/fastclick.js"></script>
|
||||
<script src="assets/libs/jquery-blockui/jquery.blockUI.js"></script>
|
||||
<script src="assets/libs/bootstrap-bootbox/bootbox.min.js"></script>
|
||||
<script src="assets/libs/jquery-slimscroll/jquery.slimscroll.js"></script>
|
||||
<script src="assets/libs/jquery-sparkline/jquery-sparkline.js"></script>
|
||||
<script src="assets/libs/nifty-modal/js/classie.js"></script>
|
||||
<script src="assets/libs/nifty-modal/js/modalEffects.js"></script>
|
||||
<script src="assets/libs/sortable/sortable.min.js"></script>
|
||||
<script src="assets/libs/bootstrap-fileinput/bootstrap.file-input.js"></script>
|
||||
<script src="assets/libs/bootstrap-select/bootstrap-select.min.js"></script>
|
||||
<script src="assets/libs/bootstrap-select2/select2.min.js"></script>
|
||||
<script src="assets/libs/magnific-popup/jquery.magnific-popup.min.js"></script>
|
||||
<script src="assets/libs/pace/pace.min.js"></script>
|
||||
<script src="assets/libs/bootstrap-datepicker/js/bootstrap-datepicker.js"></script>
|
||||
<script src="assets/libs/jquery-icheck/icheck.min.js"></script>
|
||||
|
||||
<!-- Demo Specific JS Libraries -->
|
||||
<script src="assets/libs/prettify/prettify.js"></script>
|
||||
|
||||
<script src="assets/js/init.js"></script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,156 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>500 Internal Server Error | Coco - Responsive Bootstrap Admin Template</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="description" content="">
|
||||
<meta name="keywords" content="coco bootstrap template, coco admin, bootstrap,admin template, bootstrap admin,">
|
||||
<meta name="author" content="Huban Creative">
|
||||
|
||||
<!-- Base Css Files -->
|
||||
<link href="assets/libs/jqueryui/ui-lightness/jquery-ui-1.10.4.custom.min.css" rel="stylesheet" />
|
||||
<link href="assets/libs/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
|
||||
<link href="assets/libs/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
|
||||
<link href="assets/libs/fontello/css/fontello.css" rel="stylesheet" />
|
||||
<link href="assets/libs/animate-css/animate.min.css" rel="stylesheet" />
|
||||
<link href="assets/libs/nifty-modal/css/component.css" rel="stylesheet" />
|
||||
<link href="assets/libs/magnific-popup/magnific-popup.css" rel="stylesheet" />
|
||||
<link href="assets/libs/ios7-switch/ios7-switch.css" rel="stylesheet" />
|
||||
<link href="assets/libs/pace/pace.css" rel="stylesheet" />
|
||||
<link href="assets/libs/sortable/sortable-theme-bootstrap.css" rel="stylesheet" />
|
||||
<link href="assets/libs/bootstrap-datepicker/css/datepicker.css" rel="stylesheet" />
|
||||
<link href="assets/libs/jquery-icheck/skins/all.css" rel="stylesheet" />
|
||||
<!-- Code Highlighter for Demo -->
|
||||
<link href="assets/libs/prettify/github.css" rel="stylesheet" />
|
||||
|
||||
<!-- Extra CSS Libraries Start -->
|
||||
<link href="assets/css/style.css" rel="stylesheet" type="text/css" />
|
||||
<!-- Extra CSS Libraries End -->
|
||||
<link href="assets/css/style-responsive.css" rel="stylesheet" />
|
||||
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
<link rel="shortcut icon" href="assets/img/favicon.ico">
|
||||
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png" />
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="assets/img/apple-touch-icon-57x57.png" />
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/apple-touch-icon-72x72.png" />
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/apple-touch-icon-76x76.png" />
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="assets/img/apple-touch-icon-114x114.png" />
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="assets/img/apple-touch-icon-120x120.png" />
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="assets/img/apple-touch-icon-144x144.png" />
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="assets/img/apple-touch-icon-152x152.png" />
|
||||
</head>
|
||||
<body class="fixed-left full-content internal-error">
|
||||
<!-- Modal Start -->
|
||||
<!-- Modal Task Progress -->
|
||||
<div class="md-modal md-3d-flip-vertical" id="task-progress">
|
||||
<div class="md-content">
|
||||
<h3><strong>Task Progress</strong> Information</h3>
|
||||
<div>
|
||||
<p>CLEANING BUGS</p>
|
||||
<div class="progress progress-xs for-modal">
|
||||
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
|
||||
<span class="sr-only">80% Complete</span>
|
||||
</div>
|
||||
</div>
|
||||
<p>POSTING SOME STUFF</p>
|
||||
<div class="progress progress-xs for-modal">
|
||||
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 65%">
|
||||
<span class="sr-only">65% Complete</span>
|
||||
</div>
|
||||
</div>
|
||||
<p>BACKUP DATA FROM SERVER</p>
|
||||
<div class="progress progress-xs for-modal">
|
||||
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 95%">
|
||||
<span class="sr-only">95% Complete</span>
|
||||
</div>
|
||||
</div>
|
||||
<p>RE-DESIGNING WEB APPLICATION</p>
|
||||
<div class="progress progress-xs for-modal">
|
||||
<div class="progress-bar progress-bar-primary" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 100%">
|
||||
<span class="sr-only">100% Complete</span>
|
||||
</div>
|
||||
</div>
|
||||
<p class="text-center">
|
||||
<button class="btn btn-danger btn-sm md-close">Close</button>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Modal Logout -->
|
||||
<div class="md-modal md-just-me" id="logout-modal">
|
||||
<div class="md-content">
|
||||
<h3><strong>Logout</strong> Confirmation</h3>
|
||||
<div>
|
||||
<p class="text-center">Are you sure want to logout from this awesome system?</p>
|
||||
<p class="text-center">
|
||||
<button class="btn btn-danger md-close">Nope!</button>
|
||||
<a href="login.html" class="btn btn-success md-close">Yeah, I'm sure</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- Modal End -->
|
||||
|
||||
<!-- Begin page -->
|
||||
<div class="container">
|
||||
<div class="full-content-center animated flipInX">
|
||||
<h1>500</h1>
|
||||
<h2>We are unable to show this page to you correctly!</h2><br>
|
||||
<p class="text-lightblue-2">You better try our awesome search:</p>
|
||||
<div class="row">
|
||||
<div class="icon-added input-group col-sm-8 col-sm-offset-2">
|
||||
<i class="fa fa-search"></i>
|
||||
<input type="text" class="form-control">
|
||||
<span class="input-group-btn">
|
||||
<button class="btn btn-success searchbtn" type="button">Search</button>
|
||||
</span>
|
||||
</div>
|
||||
</div><br>
|
||||
<a class="btn btn-primary btn-sm backbtn" href="index.html"><i class="fa fa-angle-left"></i> Back to Dashboard</a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End of page -->
|
||||
<!-- the overlay modal element -->
|
||||
<div class="md-overlay"></div>
|
||||
<!-- End of eoverlay modal -->
|
||||
<script>
|
||||
var resizefunc = [];
|
||||
</script>
|
||||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
||||
<script src="assets/libs/jquery/jquery-1.11.1.min.js"></script>
|
||||
<script src="assets/libs/bootstrap/js/bootstrap.min.js"></script>
|
||||
<script src="assets/libs/jqueryui/jquery-ui-1.10.4.custom.min.js"></script>
|
||||
<script src="assets/libs/jquery-ui-touch/jquery.ui.touch-punch.min.js"></script>
|
||||
<script src="assets/libs/jquery-detectmobile/detect.js"></script>
|
||||
<script src="assets/libs/jquery-animate-numbers/jquery.animateNumbers.js"></script>
|
||||
<script src="assets/libs/ios7-switch/ios7.switch.js"></script>
|
||||
<script src="assets/libs/fastclick/fastclick.js"></script>
|
||||
<script src="assets/libs/jquery-blockui/jquery.blockUI.js"></script>
|
||||
<script src="assets/libs/bootstrap-bootbox/bootbox.min.js"></script>
|
||||
<script src="assets/libs/jquery-slimscroll/jquery.slimscroll.js"></script>
|
||||
<script src="assets/libs/jquery-sparkline/jquery-sparkline.js"></script>
|
||||
<script src="assets/libs/nifty-modal/js/classie.js"></script>
|
||||
<script src="assets/libs/nifty-modal/js/modalEffects.js"></script>
|
||||
<script src="assets/libs/sortable/sortable.min.js"></script>
|
||||
<script src="assets/libs/bootstrap-fileinput/bootstrap.file-input.js"></script>
|
||||
<script src="assets/libs/bootstrap-select/bootstrap-select.min.js"></script>
|
||||
<script src="assets/libs/bootstrap-select2/select2.min.js"></script>
|
||||
<script src="assets/libs/magnific-popup/jquery.magnific-popup.min.js"></script>
|
||||
<script src="assets/libs/pace/pace.min.js"></script>
|
||||
<script src="assets/libs/bootstrap-datepicker/js/bootstrap-datepicker.js"></script>
|
||||
<script src="assets/libs/jquery-icheck/icheck.min.js"></script>
|
||||
|
||||
<!-- Demo Specific JS Libraries -->
|
||||
<script src="assets/libs/prettify/prettify.js"></script>
|
||||
|
||||
<script src="assets/js/init.js"></script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,864 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Advanced Forms | Coco - Responsive Bootstrap Admin Template</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="description" content="">
|
||||
<meta name="keywords" content="coco bootstrap template, coco admin, bootstrap,admin template, bootstrap admin,">
|
||||
<meta name="author" content="Huban Creative">
|
||||
|
||||
<!-- Base Css Files -->
|
||||
<link href="assets/libs/jqueryui/ui-lightness/jquery-ui-1.10.4.custom.min.css" rel="stylesheet" />
|
||||
<link href="assets/libs/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
|
||||
<link href="assets/libs/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
|
||||
<link href="assets/libs/fontello/css/fontello.css" rel="stylesheet" />
|
||||
<link href="assets/libs/animate-css/animate.min.css" rel="stylesheet" />
|
||||
<link href="assets/libs/nifty-modal/css/component.css" rel="stylesheet" />
|
||||
<link href="assets/libs/magnific-popup/magnific-popup.css" rel="stylesheet" />
|
||||
<link href="assets/libs/ios7-switch/ios7-switch.css" rel="stylesheet" />
|
||||
<link href="assets/libs/pace/pace.css" rel="stylesheet" />
|
||||
<link href="assets/libs/sortable/sortable-theme-bootstrap.css" rel="stylesheet" />
|
||||
<link href="assets/libs/bootstrap-datepicker/css/datepicker.css" rel="stylesheet" />
|
||||
<link href="assets/libs/jquery-icheck/skins/all.css" rel="stylesheet" />
|
||||
<!-- Code Highlighter for Demo -->
|
||||
<link href="assets/libs/prettify/github.css" rel="stylesheet" />
|
||||
|
||||
<!-- Extra CSS Libraries Start -->
|
||||
<link href="assets/libs/bootstrap-select/bootstrap-select.min.css" rel="stylesheet" type="text/css" />
|
||||
<link href="assets/libs/bootstrap-select2/select2.css" rel="stylesheet" type="text/css" />
|
||||
<link href="assets/libs/bootstrap-xeditable/css/bootstrap-editable.css" rel="stylesheet" type="text/css" />
|
||||
<link href="assets/libs/bootstrap-select2/select2.css" rel="stylesheet" type="text/css" />
|
||||
<link href="assets/css/style.css" rel="stylesheet" type="text/css" />
|
||||
<!-- Extra CSS Libraries End -->
|
||||
<link href="assets/css/style-responsive.css" rel="stylesheet" />
|
||||
|
||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
<link rel="shortcut icon" href="assets/img/favicon.ico">
|
||||
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png" />
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="assets/img/apple-touch-icon-57x57.png" />
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/apple-touch-icon-72x72.png" />
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/apple-touch-icon-76x76.png" />
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="assets/img/apple-touch-icon-114x114.png" />
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="assets/img/apple-touch-icon-120x120.png" />
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="assets/img/apple-touch-icon-144x144.png" />
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="assets/img/apple-touch-icon-152x152.png" />
|
||||
</head>
|
||||
<body class="fixed-left">
|
||||
<!-- Modal Start -->
|
||||
<!-- Modal Task Progress -->
|
||||
<div class="md-modal md-3d-flip-vertical" id="task-progress">
|
||||
<div class="md-content">
|
||||
<h3><strong>Task Progress</strong> Information</h3>
|
||||
<div>
|
||||
<p>CLEANING BUGS</p>
|
||||
<div class="progress progress-xs for-modal">
|
||||
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
|
||||
<span class="sr-only">80% Complete</span>
|
||||
</div>
|
||||
</div>
|
||||
<p>POSTING SOME STUFF</p>
|
||||
<div class="progress progress-xs for-modal">
|
||||
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 65%">
|
||||
<span class="sr-only">65% Complete</span>
|
||||
</div>
|
||||
</div>
|
||||
<p>BACKUP DATA FROM SERVER</p>
|
||||
<div class="progress progress-xs for-modal">
|
||||
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 95%">
|
||||
<span class="sr-only">95% Complete</span>
|
||||
</div>
|
||||
</div>
|
||||
<p>RE-DESIGNING WEB APPLICATION</p>
|
||||
<div class="progress progress-xs for-modal">
|
||||
<div class="progress-bar progress-bar-primary" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 100%">
|
||||
<span class="sr-only">100% Complete</span>
|
||||
</div>
|
||||
</div>
|
||||
<p class="text-center">
|
||||
<button class="btn btn-danger btn-sm md-close">Close</button>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Modal Logout -->
|
||||
<div class="md-modal md-just-me" id="logout-modal">
|
||||
<div class="md-content">
|
||||
<h3><strong>Logout</strong> Confirmation</h3>
|
||||
<div>
|
||||
<p class="text-center">Are you sure want to logout from this awesome system?</p>
|
||||
<p class="text-center">
|
||||
<button class="btn btn-danger md-close">Nope!</button>
|
||||
<a href="login.html" class="btn btn-success md-close">Yeah, I'm sure</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- Modal End -->
|
||||
<!-- Begin page -->
|
||||
<div id="wrapper">
|
||||
|
||||
<!-- Top Bar Start -->
|
||||
<div class="topbar">
|
||||
<div class="topbar-left">
|
||||
<div class="logo">
|
||||
<h1><a href="#"><img src="assets/img/logo.png" alt="Logo"></a></h1>
|
||||
</div>
|
||||
<button class="button-menu-mobile open-left">
|
||||
<i class="fa fa-bars"></i>
|
||||
</button>
|
||||
</div>
|
||||
<!-- Button mobile view to collapse sidebar menu -->
|
||||
<div class="navbar navbar-default" role="navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-collapse2">
|
||||
<ul class="nav navbar-nav hidden-xs">
|
||||
<li class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="icon-th"></i></a>
|
||||
<div class="dropdown-menu grid-dropdown">
|
||||
<div class="row stacked">
|
||||
<div class="col-xs-4">
|
||||
<a href="javascript:;" data-app="notes-app" data-status="active"><i class="icon-edit"></i>Notes</a>
|
||||
</div>
|
||||
<div class="col-xs-4">
|
||||
<a href="javascript:;" data-app="todo-app" data-status="active"><i class="icon-check"></i>Todo List</a>
|
||||
</div>
|
||||
<div class="col-xs-4">
|
||||
<a href="javascript:;" data-app="calc" data-status="inactive"><i class="fa fa-calculator"></i>Calculator</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row stacked">
|
||||
<div class="col-xs-4">
|
||||
<a href="javascript:;" data-app="weather-widget" data-status="active"><i class="icon-cloud-3"></i>Weather</a>
|
||||
</div>
|
||||
<div class="col-xs-4">
|
||||
<a href="javascript:;" data-app="calendar-widget2" data-status="active"><i class="icon-calendar"></i>Calendar</a>
|
||||
</div>
|
||||
<div class="col-xs-4">
|
||||
<a href="javascript:;" data-app="stock-app" data-status="inactive"><i class="icon-chart-line"></i>Stocks</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="language_bar dropdown hidden-xs">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">English (US) <i class="fa fa-caret-down"></i></a>
|
||||
<ul class="dropdown-menu pull-right">
|
||||
<li><a href="#">German</a></li>
|
||||
<li><a href="#">French</a></li>
|
||||
<li><a href="#">Italian</a></li>
|
||||
<li><a href="#">Spanish</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="nav navbar-nav navbar-right top-navbar">
|
||||
<li class="dropdown iconify hide-phone">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-globe"></i><span class="label label-danger absolute">4</span></a>
|
||||
<ul class="dropdown-menu dropdown-message">
|
||||
<li class="dropdown-header notif-header"><i class="icon-bell-2"></i> New Notifications<a class="pull-right" href="#"><i class="fa fa-cog"></i></a></li>
|
||||
<li class="unread">
|
||||
<a href="#">
|
||||
<p><strong>John Doe</strong> Uploaded a photo <strong>"DSC000254.jpg"</strong>
|
||||
<br /><i>2 minutes ago</i>
|
||||
</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="unread">
|
||||
<a href="#">
|
||||
<p><strong>John Doe</strong> Created an photo album <strong>"Fappening"</strong>
|
||||
<br /><i>8 minutes ago</i>
|
||||
</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">
|
||||
<p><strong>John Malkovich</strong> Added 3 products
|
||||
<br /><i>3 hours ago</i>
|
||||
</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">
|
||||
<p><strong>Sonata Arctica</strong> Send you a message <strong>"Lorem ipsum dolor..."</strong>
|
||||
<br /><i>12 hours ago</i>
|
||||
</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">
|
||||
<p><strong>Johnny Depp</strong> Updated his avatar
|
||||
<br /><i>Yesterday</i>
|
||||
</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="dropdown-footer">
|
||||
<div class="btn-group btn-group-justified">
|
||||
<div class="btn-group">
|
||||
<a href="#" class="btn btn-sm btn-primary"><i class="icon-ccw-1"></i> Refresh</a>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<a href="#" class="btn btn-sm btn-danger"><i class="icon-trash-3"></i> Clear All</a>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<a href="#" class="btn btn-sm btn-success">See All <i class="icon-right-open-2"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="dropdown iconify hide-phone">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-envelope"></i><span class="label label-danger absolute">3</span></a>
|
||||
<ul class="dropdown-menu dropdown-message">
|
||||
<li class="dropdown-header notif-header"><i class="icon-mail-2"></i> New Messages</li>
|
||||
<li class="unread">
|
||||
<a href="#" class="clearfix">
|
||||
<img src="images/users/chat/2.jpg" class="xs-avatar ava-dropdown" alt="Avatar">
|
||||
<strong>John Doe</strong><i class="pull-right msg-time">5 minutes ago</i><br />
|
||||
<p>Duis autem vel eum iriure dolor in hendrerit ...</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="unread">
|
||||
<a href="#" class="clearfix">
|
||||
<img src="images/users/chat/1.jpg" class="xs-avatar ava-dropdown" alt="Avatar">
|
||||
<strong>Sandra Kraken</strong><i class="pull-right msg-time">22 minutes ago</i><br />
|
||||
<p>Duis autem vel eum iriure dolor in hendrerit ...</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#" class="clearfix">
|
||||
<img src="images/users/chat/3.jpg" class="xs-avatar ava-dropdown" alt="Avatar">
|
||||
<strong>Zoey Lombardo</strong><i class="pull-right msg-time">41 minutes ago</i><br />
|
||||
<p>Duis autem vel eum iriure dolor in hendrerit ...</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="dropdown-footer"><div class=""><a href="#" class="btn btn-sm btn-block btn-primary"><i class="fa fa-share"></i> See all messages</a></div></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="dropdown iconify hide-phone"><a href="#" onclick="javascript:toggle_fullscreen()"><i class="icon-resize-full-2"></i></a></li>
|
||||
<li class="dropdown topbar-profile">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><span class="rounded-image topbar-profile-image"><img src="images/users/user-35.jpg"></span> Jane <strong>Doe</strong> <i class="fa fa-caret-down"></i></a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="#">My Profile</a></li>
|
||||
<li><a href="#">Change Password</a></li>
|
||||
<li><a href="#">Account Setting</a></li>
|
||||
<li class="divider"></li>
|
||||
<li><a href="#"><i class="icon-help-2"></i> Help</a></li>
|
||||
<li><a href="lockscreen.html"><i class="icon-lock-1"></i> Lock me</a></li>
|
||||
<li><a class="md-trigger" data-modal="logout-modal"><i class="icon-logout-1"></i> Logout</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="right-opener">
|
||||
<a href="javascript:;" class="open-right"><i class="fa fa-angle-double-left"></i><i class="fa fa-angle-double-right"></i></a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!--/.nav-collapse -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Top Bar End -->
|
||||
<!-- Left Sidebar Start -->
|
||||
<div class="left side-menu">
|
||||
<div class="sidebar-inner slimscrollleft">
|
||||
<!-- Search form -->
|
||||
<form role="search" class="navbar-form">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="Search" class="form-control">
|
||||
<button type="submit" class="btn search-button"><i class="fa fa-search"></i></button>
|
||||
</div>
|
||||
</form>
|
||||
<div class="clearfix"></div>
|
||||
<!--- Profile -->
|
||||
<div class="profile-info">
|
||||
<div class="col-xs-4">
|
||||
<a href="profile.html" class="rounded-image profile-image"><img src="images/users/user-100.jpg"></a>
|
||||
</div>
|
||||
<div class="col-xs-8">
|
||||
<div class="profile-text">Welcome <b>Jane</b></div>
|
||||
<div class="profile-buttons">
|
||||
<a href="javascript:;"><i class="fa fa-envelope-o pulse"></i></a>
|
||||
<a href="#connect" class="open-right"><i class="fa fa-comments"></i></a>
|
||||
<a href="javascript:;" title="Sign Out"><i class="fa fa-power-off text-red-1"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--- Divider -->
|
||||
<div class="clearfix"></div>
|
||||
<hr class="divider" />
|
||||
<div class="clearfix"></div>
|
||||
<!--- Divider -->
|
||||
<div id="sidebar-menu">
|
||||
<ul><li class='has_sub'><a href='javascript:void(0);'><i class='icon-home-3'></i><span>Dashboard</span> <span class="pull-right"><i class="fa fa-angle-down"></i></span></a><ul><li><a href='index.html'><span>Dashboard v1</span></a></li><li><a href='index2.html'><span>Dashboard v2</span></a></li></ul></li><li class='has_sub'><a href='javascript:void(0);'><i class='icon-feather'></i><span>UI Elements</span> <span class="pull-right"><i class="fa fa-angle-down"></i></span></a><ul><li><a href='alerts.html'><span>Alerts</span></a></li><li><a href='buttons.html'><span>Buttons</span></a></li><li><a href='calendar.html'><span>Calendar</span></a></li><li><a href='grid.html'><span>Grid</span></a></li><li><a href='icons.html'><span>Icons</span></a></li><li><a href='modals.html'><span>Modals</span></a></li><li><a href='nested-list.html'><span>Nested List</span></a></li><li><a href='notifications.html'><span>Notifications</span></a></li><li><a href='portlets.html'><span>Portlets</span></a></li><li><a href='progress-bars.html'><span>Progress Bars</span></a></li><li><a href='tabs-accordions.html'><span>Tabs & Accordions</span></a></li><li><a href='typography.html'><span>Typography</span></a></li></ul></li><li class='has_sub'><a href='javascript:void(0);'><i class='icon-pencil-3'></i><span>Forms</span> <span class="pull-right"><i class="fa fa-angle-down"></i></span></a><ul><li><a href='forms.html'><span>Form Elements</span></a></li><li><a href='advanced-forms.html' class='active'><span>Advanced Forms</span></a></li><li><a href='form-wizard.html'><span>Form Wizard</span></a></li><li><a href='form-validation.html'><span>Form Validation</span></a></li><li><a href='form-uploads.html'><span>File Uploads</span></a></li></ul></li><li class='has_sub'><a href='javascript:void(0);'><i class='fa fa-table'></i><span>Tables</span> <span class="pull-right"><i class="fa fa-angle-down"></i></span></a><ul><li><a href='tables.html'><span>Basic Tables</span></a></li><li><a href='datatables.html'><span>Datatables</span></a></li></ul></li><li class='has_sub'><a href='javascript:void(0);'><i class='fa fa-map-marker'></i><span>Maps</span> <span class="pull-right"><i class="fa fa-angle-down"></i></span></a><ul><li><a href='google-maps.html'><span>Google Maps</span></a></li><li><a href='vector-maps.html'><span>Vector Maps</span></a></li></ul></li><li class='has_sub'><a href='javascript:void(0);'><i class='fa fa-envelope'></i><span>Email</span> <span class="pull-right"><i class="fa fa-angle-down"></i></span></a><ul><li><a href='inbox.html'><span>Inbox</span></a></li><li><a href='read-message.html'><span>View Email</span></a></li><li><a href='new-message.html'><span>New Message</span></a></li></ul></li><li class='has_sub'><a href='javascript:void(0);'><i class='icon-chart-line'></i><span>Charts</span> <span class="pull-right"><i class="fa fa-angle-down"></i></span></a><ul><li><a href='sparkline-charts.html'><span>Sparkline Charts</span></a></li><li><a href='morris-charts.html'><span>Morris Charts</span></a></li><li><a href='rickshaw-charts.html'><span>Rickshaw Charts</span></a></li><li><a href='other-charts.html'><span>Other Charts</span></a></li></ul></li><li class='has_sub'><a href='javascript:void(0);'><i class='icon-megaphone'></i><span>Extras</span> <span class="pull-right"><i class="fa fa-angle-down"></i></span></a><ul><li><a href='blank.html'><span>Blank Page</span></a></li><li><a href='login.html'><span>Login</span></a></li><li><a href='register.html'><span>Register</span></a></li><li><a href='lockscreen.html'><span>Lock Screen</span></a></li><li><a href='404.html'><span>404 Error</span></a></li><li><a href='500.html'><span>500 Error</span></a></li><li><a href='profile.html'><span>User Profile</span></a></li><li><a href='invoice.html'><span>Invoice</span></a></li><li><a href='gallery.html'><span>Gallery</span></a></li><li><a href='maintenance.html'><span>Maintenance</span></a></li><li class='has_sub'><a href='javascript:void(0);'><span>3 Level menu</span> <span class="pull-right"><i class="fa fa-angle-down"></i></span></a><ul><li><a href='javascript:void(0);'><span>Sub Item</span></a></li></ul></li><li class='has_sub'><a href='javascript:void(0);'><span>4 Level Menu</span> <span class="pull-right"><i class="fa fa-angle-down"></i></span></a><ul><li class='has_sub'><a href='javascript:void(0);'><span>Sub Item - level 3</span> <span class="pull-right"><i class="fa fa-angle-down"></i></span></a><ul><li><a href='javascript:void(0);'><span>Sub Item - level 4</span></a></li></ul></li></ul></li><li class='has_sub'><a href='javascript:void(0);'><span>Submenu with icons</span> <span class="pull-right"><i class="fa fa-angle-down"></i></span></a><ul><li><a href='javascript:void(0);'><i class='fa fa-camera'></i><span>Item with icon</span></a></li><li><a href='javascript:void(0);'><i class='entypo entypo-users'></i><span>Another Item</span></a></li></ul></li></ul></li></ul> <div class="clearfix"></div>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
<div class="portlets">
|
||||
<div id="chat_groups" class="widget transparent nomargin">
|
||||
<h2>Chat Groups</h2>
|
||||
<div class="widget-content">
|
||||
<ul class="list-unstyled">
|
||||
<li><a href="javascript:;"><i class="fa fa-circle-o text-red-1"></i> Colleagues</a></li>
|
||||
<li><a href="javascript:;"><i class="fa fa-circle-o text-blue-1"></i> Family</a></li>
|
||||
<li><a href="javascript:;"><i class="fa fa-circle-o text-green-1"></i> Friends</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="recent_tickets" class="widget transparent nomargin">
|
||||
<h2>Recent Tickets</h2>
|
||||
<div class="widget-content">
|
||||
<ul class="list-unstyled">
|
||||
<li>
|
||||
<a href="javascript:;">My wordpress blog is broken <span>I was trying to save my page and...</span></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:;">Server down, need help!<span>My server is not responding for the last...</span></a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clearfix"></div><br><br><br>
|
||||
</div>
|
||||
<div class="left-footer">
|
||||
<div class="progress progress-xs">
|
||||
<div class="progress-bar bg-green-1" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
|
||||
<span class="progress-precentage">80%</span>
|
||||
</div>
|
||||
|
||||
<a data-toggle="tooltip" title="See task progress" class="btn btn-default md-trigger" data-modal="task-progress"><i class="fa fa-inbox"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Left Sidebar End --> <!-- Right Sidebar Start -->
|
||||
<div class="right side-menu">
|
||||
<ul class="nav nav-tabs nav-justified" id="right-tabs">
|
||||
<li class="active"><a href="#feed" data-toggle="tab" title="Live Feed"><i class="icon-rss-2"></i></a></li>
|
||||
<li><a href="#connect" data-toggle="tab" title="Chat"><i class="icon-chat"></i></a></li>
|
||||
<li><a href="#settings" data-toggle="tab" title="Preferences"><i class="icon-wrench"></i></a></li>
|
||||
</ul>
|
||||
<div class="clearfix"></div>
|
||||
<div class="tab-content">
|
||||
<div class="tab-pane active" id="feed">
|
||||
<div class="tab-inner slimscroller">
|
||||
<div class="search-right">
|
||||
<input type="text" class="form-control" placeholder="Search">
|
||||
</div>
|
||||
<div class="right-toolbar">
|
||||
<a href="javascript:;" class="pull-right">Settings <i class="icon-cog"></i></a>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
<div class="panel-group" id="collapse">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading bg-orange-1">
|
||||
<h4 class="panel-title">
|
||||
<a data-toggle="collapse" data-parent="#accordion" href="#rnotifications">
|
||||
<i class="icon-bell-2"></i> Notifications
|
||||
<span class="label bg-darkblue-1 pull-right">4</span>
|
||||
</a>
|
||||
</h4>
|
||||
</div>
|
||||
<div id="rnotifications" class="panel-collapse collapse in">
|
||||
<div class="panel-body">
|
||||
<ul class="list-unstyled" id="notification-list">
|
||||
<li><a href="javascript:;"><span class="icon-wrapper"><i class="icon-video"></i></span> 1 Video Uploaded <span class="muted">12 minutes ago</span></a></li>
|
||||
<li><a href="javascript:;"><span class="icon-wrapper"><i class="icon-users-1"></i></span> 3 Users signed up <span class="muted">16 minutes ago</span></a></li>
|
||||
<li><a href="javascript:;"><span class="icon-wrapper"><i class="icon-picture-1"></i></span> 1 Video Uploaded <span class="muted">12 minutes ago</span></a></li>
|
||||
<li><a href="javascript:;"><span class="icon-wrapper"><i class="icon-hourglass-1"></i></span> Deadline for 1 project <span class="muted">12 minutes ago</span></a></li>
|
||||
</ul>
|
||||
<a class="btn btn-block btn-sm btn-warning">See all notifications</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading bg-green-3">
|
||||
<h4 class="panel-title">
|
||||
<a data-toggle="collapse" data-parent="#accordion" href="#remails">
|
||||
<i class="icon-mail"></i> E-mails
|
||||
<span class="label bg-darkblue-1 pull-right">3</span>
|
||||
</a>
|
||||
</h4>
|
||||
</div>
|
||||
<div id="remails" class="panel-collapse collapse in">
|
||||
<div class="panel-body">
|
||||
<ul class="list-unstyled" id="inbox-list">
|
||||
<li><a href="javascript:;"><span class="sender"><i class="icon-star text-yellow-2"></i> Kim Wilde</span> <span class="datetime">6 mins ago</span>
|
||||
<span class="title">You keep me hangin on</span>
|
||||
<span class="content">Where are you? I am waiting for 3 hours in the restaurant. I ate 3 hamburgers.</span>
|
||||
</a></li>
|
||||
<li><a href="javascript:;"><span class="sender">Tyler Durden</span> <span class="datetime">13 hours ago</span>
|
||||
<span class="title">Buy some soap from market before</span>
|
||||
<span class="content">We are crowded here. We need some more soap at home. Buy some before you come home.</span>
|
||||
</a></li>
|
||||
<li><a href="javascript:;"><span class="sender">John Bonomo</span> <span class="datetime">Yesterday</span>
|
||||
<span class="title">Late delivery</span>
|
||||
<span class="content">Hello, I ordered 15 box of viagra for a friend of mine but he still hasn't receive them.</span>
|
||||
</a></li>
|
||||
</ul>
|
||||
<a class="btn btn-block btn-sm btn-primary">Go to inbox</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading bg-blue-1">
|
||||
<h4 class="panel-title">
|
||||
<a data-toggle="collapse" data-parent="#accordion" href="#rupdates">
|
||||
<i class="icon-signal-2"></i> Updates
|
||||
<span class="label bg-darkblue-1 pull-right">5</span>
|
||||
</a>
|
||||
</h4>
|
||||
</div>
|
||||
<div id="rupdates" class="panel-collapse collapse in">
|
||||
<div class="panel-body">
|
||||
<ul class="list-unstyled" id="updates-list">
|
||||
<li><a href="javascript:;"><span class="icon-wrapper bg-green-1"><i class="icon-comment-1"></i></span> <b>David Guetta</b> came online <abbr title="15 seconds ago">just now</abbr>.</a></li>
|
||||
<li><a href="javascript:;"><span class="icon-wrapper bg-red-1"><i class="icon-user-3"></i></span> <b>Katy Perry</b> updated her profile <abbr title="4 mins ago">4 mins ago</abbr>.</a></li>
|
||||
<li><a href="javascript:;"><span class="icon-wrapper bg-blue-1"><i class="icon-twitter-2"></i></span> <b>4 tweets posted</b> with cronjob <abbr title="22 mins ago">22 mins ago</abbr>.</a></li>
|
||||
<li><a href="javascript:;"><span class="icon-wrapper bg-orange-3"><i class="icon-water"></i></span> <b>Adele</b> set fire to the rain <abbr title="43 mins ago">43 mins ago</abbr>.</a></li>
|
||||
<li><a href="javascript:;"><span class="icon-wrapper bg-pink-2"><i class="icon-heart-broken"></i></span> <b>Taylor Swift</b> learned that you are trouble <abbr title="3 hours ago">3 days ago</abbr>.</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane" id="connect">
|
||||
<div class="tab-inner slimscroller">
|
||||
<div class="search-right">
|
||||
<input type="text" class="form-control" placeholder="Search">
|
||||
</div>
|
||||
<div class="panel-group" id="collapse">
|
||||
<div class="panel panel-default" id="chat-panel">
|
||||
<div class="panel-heading bg-darkblue-2">
|
||||
<h4 class="panel-title">
|
||||
<a data-toggle="collapse" href="#chat-coll">
|
||||
<i class="icon-briefcase-1"></i> Colleagues
|
||||
<span class="label bg-darkblue-1 pull-right">14</span>
|
||||
</a>
|
||||
</h4>
|
||||
</div>
|
||||
<div id="chat-coll" class="panel-collapse collapse in">
|
||||
<div class="panel-body">
|
||||
<ul class="list-unstyled" id="chat-list">
|
||||
<li><a href="javascript:;" class="online"><span class="chat-user-avatar"><img src="images/users/chat/1.jpg"></span> <span class="chat-user-name">Dorothy Simons</span><span class="chat-user-msg">I wish I was a bird in the sky</span></a></li>
|
||||
<li><a href="javascript:;" class="online"><span class="chat-user-avatar"><img src="images/users/chat/2.jpg"></span> <span class="chat-user-name">John Malkovich</span><span class="chat-user-msg">You were the traitor</span></a></li>
|
||||
<li><a href="javascript:;" class="online"><span class="chat-user-avatar"><img src="images/users/chat/3.jpg"></span> <span class="chat-user-name">Jessica Simons</span><span class="chat-user-msg">Where is my mind</span></a></li>
|
||||
<li><a href="javascript:;" class="away"><span class="chat-user-avatar"><img src="images/users/chat/4.jpg"></span> <span class="chat-user-name">Jack Stallman</span><span class="chat-user-msg">Away since 13:32</span></a></li>
|
||||
<li><a href="javascript:;" class="offline"><span class="chat-user-avatar"><img src="images/users/chat/5.jpg"></span> <span class="chat-user-name">Neil Armstrong</span><span class="chat-user-msg" title="I am flying to the moon and back">I am flying to the moon and back</span></a></li>
|
||||
<li><a href="javascript:;" class="offline"><span class="chat-user-avatar"><img src="images/users/chat/6.jpg"></span> <span class="chat-user-name">Hollywood Studios</span><span class="chat-user-msg">Yes he definitely is!</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-default" id="chat-panel">
|
||||
<div class="panel-heading bg-darkblue-2">
|
||||
<h4 class="panel-title">
|
||||
<a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo">
|
||||
<i class="icon-heart-3"></i> Friends
|
||||
<span class="label bg-darkblue-1 pull-right">3</span>
|
||||
</a>
|
||||
</h4>
|
||||
</div>
|
||||
<div id="collapseTwo" class="panel-collapse collapse in">
|
||||
<div class="panel-body">
|
||||
<ul class="list-unstyled" id="chat-list">
|
||||
<li><a href="javascript:;" class="online"><span class="chat-user-avatar"><img src="images/users/chat/1.jpg"></span> <span class="chat-user-name">Dorothy Simons</span><span class="chat-user-msg">I wish I was a bird in the sky</span></a></li>
|
||||
<li><a href="javascript:;" class="online"><span class="chat-user-avatar"><img src="images/users/chat/2.jpg"></span> <span class="chat-user-name">John Malkovich</span><span class="chat-user-msg">You were the traitor</span></a></li>
|
||||
<li><a href="javascript:;" class="online"><span class="chat-user-avatar"><img src="images/users/chat/3.jpg"></span> <span class="chat-user-name">Jessica Simons</span><span class="chat-user-msg" title="Eminem - The Monster ft. Rihanna"><i class="icon-play"></i> Eminem - The Monster ft. Rihanna</span></a></li>
|
||||
<li><a href="javascript:;" class="away"><span class="chat-user-avatar"><img src="images/users/chat/4.jpg"></span> <span class="chat-user-name">Jack Stallman</span><span class="chat-user-msg">Away since 13:32</span></a></li>
|
||||
<li><a href="javascript:;" class="offline"><span class="chat-user-avatar"><img src="images/users/chat/5.jpg"></span> <span class="chat-user-name">Neil Armstrong</span><span class="chat-user-msg" title="I am flying to the moon and back">I am flying to the moon and back</span></a></li>
|
||||
<li><a href="javascript:;" class="offline"><span class="chat-user-avatar"><img src="images/users/chat/6.jpg"></span> <span class="chat-user-name">Hollywood Studios</span><span class="chat-user-msg">Yes he definitely is!</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="tab-pane" id="settings">
|
||||
<div class="tab-inner slimscroller">
|
||||
<div class="col-sm-12">
|
||||
<h3>Preferences</h3>
|
||||
<div class="row">
|
||||
<div class="col-xs-8">
|
||||
Live data updates
|
||||
</div>
|
||||
<div class="col-xs-4">
|
||||
<input type="checkbox" class="ios-switch ios-switch-success ios-switch-sm" checked />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-8">
|
||||
Live feeds
|
||||
</div>
|
||||
<div class="col-xs-4">
|
||||
<input type="checkbox" class="ios-switch ios-switch-success ios-switch-sm" checked />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-8">
|
||||
Sync data to cloud
|
||||
</div>
|
||||
<div class="col-xs-4">
|
||||
<input type="checkbox" class="ios-switch ios-switch-success ios-switch-sm" checked />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-8">
|
||||
Keep activity record
|
||||
</div>
|
||||
<div class="col-xs-4">
|
||||
<input type="checkbox" class="ios-switch ios-switch-danger ios-switch-sm" checked />
|
||||
</div>
|
||||
</div>
|
||||
<h4>Other Settings</h4>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<label class="checkboxw"><input type="checkbox" checked> Autosave settings</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<label class="checkboxw"><input type="checkbox"> Always online</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Right Sidebar End -->
|
||||
<!-- Start right content -->
|
||||
<div class="content-page">
|
||||
<!-- ============================================================== -->
|
||||
<!-- Start Content here -->
|
||||
<!-- ============================================================== -->
|
||||
<div class="content">
|
||||
<!-- Page Heading Start -->
|
||||
<div class="page-heading">
|
||||
<h1><i class='fa fa-check'></i> Advanced Forms</h1>
|
||||
</div>
|
||||
<!-- Page Heading End-->
|
||||
|
||||
<!-- Your awesome content goes here -->
|
||||
<div class="row">
|
||||
|
||||
<div class="col-sm-12 portlets">
|
||||
|
||||
<div class="widget">
|
||||
<div class="widget-header">
|
||||
<h2><strong>Inline</strong> Editing</h2>
|
||||
<div class="additional-btn">
|
||||
<a href="#" class="hidden reload"><i class="icon-ccw-1"></i></a>
|
||||
<a href="#" class="widget-toggle"><i class="icon-down-open-2"></i></a>
|
||||
<a href="#" class="widget-close"><i class="icon-cancel-3"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget-content padding">
|
||||
<p>Click to edit</p>
|
||||
<table id="user" class="table table-bordered table-striped" style="clear: both">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="35%">Simple text field</td>
|
||||
<td width="65%"><a href="#" id="username" data-type="text" data-pk="1" data-title="Enter username">superuser</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Empty text field, required</td>
|
||||
<td><a href="#" id="firstname" data-type="text" data-pk="1" data-placement="right" data-placeholder="Required" data-title="Enter your firstname"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Select, local array, custom display</td>
|
||||
<td><a href="#" id="sex" data-type="select" data-pk="1" data-value="" data-title="Select sex"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Select, remote array, no buttons</td>
|
||||
<td><a href="#" id="group" data-type="select" data-pk="1" data-value="5" data-source="/groups" data-title="Select group">Admin</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Select, error while loading</td>
|
||||
<td><a href="#" id="status" data-type="select" data-pk="1" data-value="0" data-source="/status" data-title="Select status">Active</a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Datepicker</td>
|
||||
<td>
|
||||
|
||||
<span class="notready">not implemented for Bootstrap 3 yet</span>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Combodate (date)</td>
|
||||
<td><a href="#" id="dob" data-type="combodate" data-value="1984-05-15" data-format="YYYY-MM-DD" data-viewformat="DD/MM/YYYY" data-template="D / MMM / YYYY" data-pk="1" data-title="Select Date of birth"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Combodate (datetime)</td>
|
||||
<td><a href="#" id="event" data-type="combodate" data-template="D MMM YYYY HH:mm" data-format="YYYY-MM-DD HH:mm" data-viewformat="MMM D, YYYY, HH:mm" data-pk="1" data-title="Setup event date and time"></a></td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
<tr>
|
||||
<td>Textarea, buttons below. Submit by <i>ctrl+enter</i></td>
|
||||
<td><a href="#" id="comments" data-type="textarea" data-pk="1" data-placeholder="Your comments here..." data-title="Enter comments">awesome user!</a></td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<td>Checklist</td>
|
||||
<td><a href="#" id="fruits" data-type="checklist" data-value="2,3" data-title="Select fruits"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Select2 (tags mode)</td>
|
||||
<td><a href="#" id="tags" data-type="select2" data-pk="1" data-title="Enter tags">html, javascript</a></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>Select2 (dropdown mode)</td>
|
||||
<td><a href="#" id="country" data-type="select2" data-pk="1" data-value="BS" data-title="Select country"></a></td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="widget">
|
||||
<div class="widget-header">
|
||||
<h2><strong>IOS 7</strong> Switches</h2>
|
||||
<div class="additional-btn">
|
||||
<a href="#" class="hidden reload"><i class="icon-ccw-1"></i></a>
|
||||
<a href="#" class="widget-toggle"><i class="icon-down-open-2"></i></a>
|
||||
<a href="#" class="widget-close"><i class="icon-cancel-3"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget-content padding">
|
||||
<h4>Large Size</h4>
|
||||
<input type="checkbox" class="ios-switch ios-switch-default ios-switch-lg" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-primary ios-switch-lg" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-success ios-switch-lg" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-danger ios-switch-lg" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-warning ios-switch-lg" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-info ios-switch-lg" checked />
|
||||
|
||||
<h4>Default Size</h4>
|
||||
<input type="checkbox" class="ios-switch ios-switch-default" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-primary" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-success" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-danger" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-warning" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-info" checked />
|
||||
|
||||
<h4>Small Size</h4>
|
||||
<input type="checkbox" class="ios-switch ios-switch-default ios-switch-sm" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-primary ios-switch-sm" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-success ios-switch-sm" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-danger ios-switch-sm" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-warning ios-switch-sm" checked />
|
||||
<input type="checkbox" class="ios-switch ios-switch-info ios-switch-sm" checked />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="widget">
|
||||
<div class="widget-header">
|
||||
<h2><strong>WYSIWYG</strong> Editor</h2>
|
||||
<div class="additional-btn">
|
||||
<a href="#" class="hidden reload"><i class="icon-ccw-1"></i></a>
|
||||
<a href="#" class="widget-toggle"><i class="icon-down-open-2"></i></a>
|
||||
<a href="#" class="widget-close"><i class="icon-cancel-3"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget-content">
|
||||
<textarea id="ckeditor"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="widget">
|
||||
<div class="widget-header">
|
||||
<h2><strong>Inline</strong> WYSIWYG Editor</h2>
|
||||
<div class="additional-btn">
|
||||
<a href="#" class="hidden reload"><i class="icon-ccw-1"></i></a>
|
||||
<a href="#" class="widget-toggle"><i class="icon-down-open-2"></i></a>
|
||||
<a href="#" class="widget-close"><i class="icon-cancel-3"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget-content padding">
|
||||
<div id="container">
|
||||
<div id="header">
|
||||
<div id="headerLeft">
|
||||
<h2 id="sampleTitle" contenteditable="true">
|
||||
CKEditor<br> Goes Inline!
|
||||
</h2>
|
||||
<h3 contenteditable="true">
|
||||
Lorem ipsum dolor sit amet dolor duis blandit vestibulum faucibus a, tortor.
|
||||
</h3>
|
||||
</div>
|
||||
<div id="headerRight">
|
||||
<div contenteditable="true">
|
||||
<p>
|
||||
Lorem ipsum dolor sit amet enim. Etiam ullamcorper. Suspendisse a pellentesque dui, non felis. Maecenas malesuada elit lectus felis, malesuada ultricies.
|
||||
</p>
|
||||
<p>
|
||||
Curabitur et ligula. Ut molestie a, ultricies porta urna. Vestibulum commodo volutpat a, convallis ac, laoreet enim. Phasellus fermentum in, dolor. Pellentesque facilisis. Nulla imperdiet sit amet magna. Vestibulum dapibus, mauris nec malesuada fames ac.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="columns">
|
||||
<div id="column1">
|
||||
<div contenteditable="true">
|
||||
<h3>
|
||||
Fusce vitae porttitor
|
||||
</h3>
|
||||
<p>
|
||||
<strong>
|
||||
Lorem ipsum dolor sit amet dolor. Duis blandit vestibulum faucibus a, tortor.
|
||||
</strong>
|
||||
</p>
|
||||
<p>
|
||||
Proin nunc justo felis mollis tincidunt, risus risus pede, posuere cubilia Curae, Nullam euismod, enim. Etiam nibh ultricies dolor ac dignissim erat volutpat. Vivamus fermentum <a href="http://ckeditor.com/">nisl nulla sem in</a> metus. Maecenas wisi. Donec nec erat volutpat.
|
||||
</p>
|
||||
<blockquote>
|
||||
<p>
|
||||
Fusce vitae porttitor a, euismod convallis nisl, blandit risus tortor, pretium.
|
||||
Vehicula vitae, imperdiet vel, ornare enim vel sodales rutrum
|
||||
</p>
|
||||
</blockquote>
|
||||
<blockquote>
|
||||
<p>
|
||||
Libero nunc, rhoncus ante ipsum non ipsum. Nunc eleifend pede turpis id sollicitudin fringilla. Phasellus ultrices, velit ac arcu.
|
||||
</p>
|
||||
</blockquote>
|
||||
<p>Pellentesque nunc. Donec suscipit erat. Pellentesque habitant morbi tristique ullamcorper.</p>
|
||||
<p><s>Mauris mattis feugiat lectus nec mauris. Nullam vitae ante.</s></p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="column2">
|
||||
<div contenteditable="true">
|
||||
<h3>
|
||||
Integer condimentum sit amet
|
||||
</h3>
|
||||
<p>
|
||||
<strong>Aenean nonummy a, mattis varius. Cras aliquet.</strong>
|
||||
Praesent <a href="http://ckeditor.com/">magna non mattis ac, rhoncus nunc</a>, rhoncus eget, cursus pulvinar mollis.</p>
|
||||
<p>Proin id nibh. Sed eu libero posuere sed, lectus. Phasellus dui gravida gravida feugiat mattis ac, felis.</p>
|
||||
<p>Integer condimentum sit amet, tempor elit odio, a dolor non ante at sapien. Sed ac lectus. Nulla ligula quis eleifend mi, id leo velit pede cursus arcu id nulla ac lectus. Phasellus vestibulum. Nunc viverra enim quis diam.</p>
|
||||
</div>
|
||||
<div contenteditable="true">
|
||||
<h3>
|
||||
Praesent wisi accumsan sit amet nibh
|
||||
</h3>
|
||||
<p>Donec ullamcorper, risus tortor, pretium porttitor. Morbi quam quis lectus non leo.</p>
|
||||
<p style="margin-left: 40px; ">Integer faucibus scelerisque. Proin faucibus at, aliquet vulputate, odio at eros. Fusce <a href="http://ckeditor.com/">gravida, erat vitae augue</a>. Fusce urna fringilla gravida.</p>
|
||||
<p>In hac habitasse platea dictumst. Praesent wisi accumsan sit amet nibh. Maecenas orci luctus a, lacinia quam sem, posuere commodo, odio condimentum tempor, pede semper risus. Suspendisse pede. In hac habitasse platea dictumst. Nam sed laoreet sit amet erat. Integer.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="column3">
|
||||
<div contenteditable="true">
|
||||
<p>
|
||||
<img src="assets/inlineall/logo.png" alt="CKEditor logo" style="float:left">
|
||||
</p>
|
||||
<p>Quisque justo neque, mattis sed, fermentum ultrices <strong>posuere cubilia Curae</strong>, Vestibulum elit metus, quis placerat ut, lectus. Ut sagittis, nunc libero, egestas consequat lobortis velit rutrum ut, faucibus turpis. Fusce porttitor, nulla quis turpis. Nullam laoreet vel, consectetuer tellus suscipit ultricies, hendrerit wisi. Donec odio nec velit ac nunc sit amet, accumsan cursus aliquet. Vestibulum ante sit amet sagittis mi.</p>
|
||||
<h3>
|
||||
Nullam laoreet vel consectetuer tellus suscipit
|
||||
</h3>
|
||||
<ul>
|
||||
<li>Ut sagittis, nunc libero, egestas consequat lobortis velit rutrum ut, faucibus turpis.</li>
|
||||
<li>Fusce porttitor, nulla quis turpis. Nullam laoreet vel, consectetuer tellus suscipit ultricies, hendrerit wisi.</li>
|
||||
<li>Mauris eget tellus. Donec non felis. Nam eget dolor. Vestibulum enim. Donec.</li>
|
||||
</ul>
|
||||
<p>Quisque justo neque, mattis sed, <a href="http://ckeditor.com/">fermentum ultrices posuere cubilia</a> Curae, Vestibulum elit metus, quis placerat ut, lectus.</p>
|
||||
<p>Nullam laoreet vel, consectetuer tellus suscipit ultricies, hendrerit wisi. Ut sagittis, nunc libero, egestas consequat lobortis velit rutrum ut, faucibus turpis. Fusce porttitor, nulla quis turpis.</p>
|
||||
<p>Donec odio nec velit ac nunc sit amet, accumsan cursus aliquet. Vestibulum ante sit amet sagittis mi. Sed in nonummy faucibus turpis. Mauris eget tellus. Donec non felis. Nam eget dolor. Vestibulum enim. Donec.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="tagLine">
|
||||
Tags of this article:
|
||||
<p id="taglist" contenteditable="true">
|
||||
inline, editing, floating, CKEditor
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End of your awesome content -->
|
||||
|
||||
<!-- Footer Start -->
|
||||
<footer>
|
||||
Huban Creative © 2014
|
||||
<div class="footer-links pull-right">
|
||||
<a href="#">About</a><a href="#">Support</a><a href="#">Terms of Service</a><a href="#">Legal</a><a href="#">Help</a><a href="#">Contact Us</a>
|
||||
</div>
|
||||
</footer>
|
||||
<!-- Footer End -->
|
||||
</div>
|
||||
<!-- ============================================================== -->
|
||||
<!-- End content here -->
|
||||
<!-- ============================================================== -->
|
||||
|
||||
</div>
|
||||
<!-- End right content -->
|
||||
|
||||
</div>
|
||||
<!-- End of page -->
|
||||
<!-- the overlay modal element -->
|
||||
<div class="md-overlay"></div>
|
||||
<!-- End of eoverlay modal -->
|
||||
<script>
|
||||
var resizefunc = [];
|
||||
</script>
|
||||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
||||
<script src="assets/libs/jquery/jquery-1.11.1.min.js"></script>
|
||||
<script src="assets/libs/bootstrap/js/bootstrap.min.js"></script>
|
||||
<script src="assets/libs/jqueryui/jquery-ui-1.10.4.custom.min.js"></script>
|
||||
<script src="assets/libs/jquery-ui-touch/jquery.ui.touch-punch.min.js"></script>
|
||||
<script src="assets/libs/jquery-detectmobile/detect.js"></script>
|
||||
<script src="assets/libs/jquery-animate-numbers/jquery.animateNumbers.js"></script>
|
||||
<script src="assets/libs/ios7-switch/ios7.switch.js"></script>
|
||||
<script src="assets/libs/fastclick/fastclick.js"></script>
|
||||
<script src="assets/libs/jquery-blockui/jquery.blockUI.js"></script>
|
||||
<script src="assets/libs/bootstrap-bootbox/bootbox.min.js"></script>
|
||||
<script src="assets/libs/jquery-slimscroll/jquery.slimscroll.js"></script>
|
||||
<script src="assets/libs/jquery-sparkline/jquery-sparkline.js"></script>
|
||||
<script src="assets/libs/nifty-modal/js/classie.js"></script>
|
||||
<script src="assets/libs/nifty-modal/js/modalEffects.js"></script>
|
||||
<script src="assets/libs/sortable/sortable.min.js"></script>
|
||||
<script src="assets/libs/bootstrap-fileinput/bootstrap.file-input.js"></script>
|
||||
<script src="assets/libs/bootstrap-select/bootstrap-select.min.js"></script>
|
||||
<script src="assets/libs/bootstrap-select2/select2.min.js"></script>
|
||||
<script src="assets/libs/magnific-popup/jquery.magnific-popup.min.js"></script>
|
||||
<script src="assets/libs/pace/pace.min.js"></script>
|
||||
<script src="assets/libs/bootstrap-datepicker/js/bootstrap-datepicker.js"></script>
|
||||
<script src="assets/libs/jquery-icheck/icheck.min.js"></script>
|
||||
|
||||
<!-- Demo Specific JS Libraries -->
|
||||
<script src="assets/libs/prettify/prettify.js"></script>
|
||||
|
||||
<script src="assets/js/init.js"></script>
|
||||
<!-- Page Specific JS Libraries -->
|
||||
<script src="assets/libs/bootstrap-select/bootstrap-select.min.js"></script>
|
||||
<script src="assets/libs/bootstrap-inputmask/inputmask.js"></script>
|
||||
<script src="assets/libs/bootstrap-xeditable/js/bootstrap-editable.min.js"></script>
|
||||
<script src="assets/libs/bootstrap-xeditable/demo/jquery.mockjax.js"></script>
|
||||
<script src="assets/libs/bootstrap-xeditable/demo/demo-mock.js"></script>
|
||||
<script src="assets/libs/bootstrap-select2/select2.min.js"></script>
|
||||
<script src="assets/libs/jquery-clndr/moment-2.5.1.js"></script>
|
||||
<script src="assets/libs/bootstrap-typeahead/bootstrap3-typeahead.min.js"></script>
|
||||
<script src="assets/libs/ckeditor/ckeditor.js"></script>
|
||||
<script src="assets/libs/ckeditor/adapters/jquery.js"></script>
|
||||
<script src="assets/js/pages/advanced-forms.js"></script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,263 @@
|
||||
/*Large Desktop*/
|
||||
@media (min-width: 1200px) {
|
||||
|
||||
}
|
||||
|
||||
/*Desktop*/
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
|
||||
}
|
||||
|
||||
/*Small desktop or tablet*/
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
body{overflow-x: hidden;}
|
||||
.table-responsive {
|
||||
width: 100%;
|
||||
margin-bottom: 15px;
|
||||
overflow-x: scroll;
|
||||
overflow-y: hidden;
|
||||
border: 1px solid #dddddd;
|
||||
-ms-overflow-style: -ms-autohiding-scrollbar;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
.table-responsive > .table {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.table-responsive > .table > thead > tr > th,
|
||||
.table-responsive > .table > tbody > tr > th,
|
||||
.table-responsive > .table > tfoot > tr > th,
|
||||
.table-responsive > .table > thead > tr > td,
|
||||
.table-responsive > .table > tbody > tr > td,
|
||||
.table-responsive > .table > tfoot > tr > td {
|
||||
white-space: nowrap;
|
||||
}
|
||||
.table-responsive > .table-bordered {
|
||||
border: 0;
|
||||
}
|
||||
.table-responsive > .table-bordered > thead > tr > th:first-child,
|
||||
.table-responsive > .table-bordered > tbody > tr > th:first-child,
|
||||
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
||||
.table-responsive > .table-bordered > thead > tr > td:first-child,
|
||||
.table-responsive > .table-bordered > tbody > tr > td:first-child,
|
||||
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
||||
border-left: 0;
|
||||
}
|
||||
.table-responsive > .table-bordered > thead > tr > th:last-child,
|
||||
.table-responsive > .table-bordered > tbody > tr > th:last-child,
|
||||
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
||||
.table-responsive > .table-bordered > thead > tr > td:last-child,
|
||||
.table-responsive > .table-bordered > tbody > tr > td:last-child,
|
||||
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
||||
border-right: 0;
|
||||
}
|
||||
.table-responsive > .table-bordered > tbody > tr:last-child > th,
|
||||
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
||||
.table-responsive > .table-bordered > tbody > tr:last-child > td,
|
||||
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
||||
border-bottom: 0;
|
||||
}
|
||||
.button-menu-mobile{display: block;}
|
||||
.navbar{margin: 0 0 0 40px;}
|
||||
.mobile-sidebar{left: 0px;}
|
||||
.mobile-content{left: 225px;right: -225px;}
|
||||
.box-info .icon-box{
|
||||
width: 45px;
|
||||
font-size: 20px;
|
||||
margin-top: 5px
|
||||
}
|
||||
.box-info .text-box p{font-size: 11px;}
|
||||
.toolbar-btn-action{text-align: center;}
|
||||
.gallery-wrap .column .inner .img-wrap{
|
||||
height: 60px;
|
||||
overflow: hidden;
|
||||
background: #ddd;
|
||||
}
|
||||
.gallery-wrap .column-3 .inner .img-wrap{
|
||||
height: 140px;
|
||||
overflow: hidden;
|
||||
background: #ddd;
|
||||
}
|
||||
.gallery-wrap .column-4 .inner .img-wrap{
|
||||
height: 100px;
|
||||
overflow: hidden;
|
||||
background: #ddd;
|
||||
}
|
||||
.user-profile-sidebar{text-align: center;}
|
||||
|
||||
}
|
||||
|
||||
/*Phone*/
|
||||
@media (max-width: 767px) {
|
||||
body{overflow-x: hidden;}
|
||||
|
||||
.mobile-sidebar{left: 0px;}
|
||||
.mobile-content{left: 250px;right: -250px;}
|
||||
.box-info table{margin: 0 0 0 0;}
|
||||
.box-info .table-responsive{border: none;}
|
||||
.nav.navbar-nav.top-navbar li span.absolute {left: 25px;}
|
||||
.box-info .additional .list-group{margin-bottom: -10px;}
|
||||
.toolbar-btn-action{text-align: center;}
|
||||
.gallery-wrap .column{width: 25%;}
|
||||
.gallery-wrap .column-4{width: 33.33333333333333%;}
|
||||
.gallery-wrap .column-3{width: 50%;}
|
||||
.gallery-wrap .column .inner .img-wrap{
|
||||
height: 70px;
|
||||
overflow: hidden;
|
||||
background: #ddd;
|
||||
}
|
||||
.gallery-wrap .column-3 .inner .img-wrap{
|
||||
height: 140px;
|
||||
overflow: hidden;
|
||||
background: #ddd;
|
||||
}
|
||||
.gallery-wrap .column-4 .inner .img-wrap{
|
||||
height: 105px;
|
||||
overflow: hidden;
|
||||
background: #ddd;
|
||||
}
|
||||
.widget.box-messages{
|
||||
margin-top:0px;
|
||||
}
|
||||
|
||||
footer{text-align: center;}
|
||||
.navbar-nav{
|
||||
float:left;
|
||||
margin:0px;
|
||||
}
|
||||
.navbar{
|
||||
border:none;
|
||||
}
|
||||
|
||||
.navbar-nav .open .dropdown-menu{
|
||||
float:left;
|
||||
position: absolute;
|
||||
background:#fff;
|
||||
right:0px;
|
||||
left:auto;
|
||||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.navbar-nav.navbar-right:last-child {
|
||||
margin-right: -15px;
|
||||
height:50px;
|
||||
}
|
||||
|
||||
.open > .dropdown-menu {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.nav-tabs.nav-justified > li {
|
||||
display: table-cell;
|
||||
width: 1%;
|
||||
}
|
||||
|
||||
.navbar-nav > li > a{
|
||||
padding-top: 15px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
|
||||
.navbar-right{
|
||||
float: right;
|
||||
}
|
||||
.navbar-nav > li{
|
||||
display: inline-block;
|
||||
}
|
||||
.lock-screen{text-align: center;}
|
||||
|
||||
.profile-actions{
|
||||
bottom:auto;
|
||||
top:60px;
|
||||
}
|
||||
.widget-tabbed{
|
||||
margin-top:40px;
|
||||
}
|
||||
.widget-tabbed .nav-tabs a{
|
||||
font-size:0px !important;
|
||||
}
|
||||
.widget-tabbed .nav-tabs a i{
|
||||
font-size:18px !important;
|
||||
}
|
||||
.the-timeline ul li.the-year{
|
||||
font-size:30px;
|
||||
}
|
||||
.ava-lock-screen{text-align: center; margin-bottom: 20px;}
|
||||
.ava-lock-screen img{
|
||||
width: 100px;
|
||||
margin: 0;
|
||||
}
|
||||
.open-right-sidebar .hide-phone{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.la-pricing-table .la-col-4{width: 50%;}
|
||||
.user-profile-sidebar{text-align: center;}
|
||||
}
|
||||
|
||||
@media (max-width: 480px){
|
||||
.box-info .icon-box{
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
.box-info .icon-box,.box-info .text-box{text-align: center;}
|
||||
.gallery-wrap .column,.gallery-wrap .column-3,.gallery-wrap .column-4{width: 33.33333333333333%;}
|
||||
.gallery-wrap .column .inner .img-wrap,.gallery-wrap .column-3 .inner .img-wrap,.gallery-wrap .column-4 .inner .img-wrap{height: 70px;}
|
||||
.login-wrap{margin: 20px 0 0 0;}
|
||||
|
||||
.navbar-default {
|
||||
border: none;
|
||||
}
|
||||
.open-right-sidebar .topbar-profile,.open-right-sidebar .hide-phone{
|
||||
display: none;
|
||||
}
|
||||
.the-timeline ul li.the-year{
|
||||
font-size:20px;
|
||||
margin-left: 37%;
|
||||
}
|
||||
#wrapper:not(.enlarged) .topbar-profile,#wrapper:not(.enlarged) .hide-phone{
|
||||
display: none;
|
||||
}
|
||||
#wrapper .content-page{
|
||||
margin-left:0px !important;
|
||||
padding-left:50px;
|
||||
width:100%;
|
||||
display: inline-block;
|
||||
}
|
||||
.open-right-sidebar .content-page > .content{
|
||||
opacity: 0;
|
||||
}
|
||||
.side-menu{
|
||||
z-index: 10 !important;
|
||||
}
|
||||
#weather h2{
|
||||
top:90px;
|
||||
}
|
||||
#weather .w-region{
|
||||
top:250px;
|
||||
}
|
||||
#stock-widget #stock-title{
|
||||
display: none;
|
||||
}
|
||||
#stock-widget .stock-options{
|
||||
margin-left: 15px;
|
||||
}
|
||||
.button-menu-mobile{display: block;}
|
||||
}
|
||||
|
||||
@media (max-width: 420px){
|
||||
.hide-phone{
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@media (max-width: 360px){
|
||||
.gallery-wrap .column,.gallery-wrap .column-3,.gallery-wrap .column-4{width: 50%;}
|
||||
.gallery-wrap .column .inner .img-wrap,.gallery-wrap .column-3 .inner .img-wrap,.gallery-wrap .column-4 .inner .img-wrap{height: 80px;}
|
||||
.la-pricing-table .la-col-4{width: 100%;}
|
||||
}
|
||||
|
||||
@media (max-width: 320px){
|
||||
.gallery-wrap .column,.gallery-wrap .column-3,.gallery-wrap .column-4{width: 50%;}
|
||||
.gallery-wrap .column .inner .img-wrap,.gallery-wrap .column-3 .inner .img-wrap,.gallery-wrap .column-4 .inner .img-wrap{height: 70px;}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 5.1 KiB |
After Width: | Height: | Size: 6.5 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 2.1 KiB |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue