style.css 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286
  1. /*********************
  2. GENERAL RESET & SETUP
  3. *********************/
  4. /***
  5. Import fonts
  6. ***/
  7. @import url(../image/css);
  8. /***
  9. Reset and overrides
  10. ***/
  11. /* general body settings */
  12. body {
  13. color: #000;
  14. font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial;
  15. padding: 0px !important;
  16. margin: 0px !important;
  17. font-size:13px;
  18. direction: ltr;
  19. }
  20. /***
  21. General typography
  22. ***/
  23. h3 small, h4 small, h5 small {
  24. color: #444;
  25. }
  26. h1, h2, h3, h4, h5, h6 {
  27. font-weight: 300;
  28. }
  29. h1.block, h2.block, h3.block, h4.block, h5.block, h6.block {
  30. padding-bottom: 10px;
  31. }
  32. a {
  33. text-shadow: none !important;
  34. color: #0d638f;
  35. }
  36. /***
  37. General backgrounds
  38. ***/
  39. .bg-blue {
  40. background-image: none !important;
  41. background-color: #4b8df8 !important;
  42. }
  43. .bg-red {
  44. background-image: none !important;
  45. background-color: #e02222 !important;
  46. }
  47. .bg-yellow {
  48. background-image: none !important;
  49. background-color: #ffb848 !important;
  50. }
  51. .bg-green {
  52. background-image: none !important;
  53. background-color: #35aa47 !important;
  54. }
  55. .bg-purple {
  56. background-image: none !important;
  57. background-color: #852b99 !important;
  58. }
  59. .bg-grey {
  60. background-image: none !important;
  61. background-color: #555555 !important;
  62. }
  63. /***
  64. Apply fix for font awesome icons.
  65. ***/
  66. [class^="icon-"],
  67. [class*=" icon-"],
  68. [class^="icon-"]:hover,
  69. [class*=" icon-"]:hover {
  70. background: none !important;
  71. }
  72. /***
  73. Make font awesome icons fixed width(latest version issue)
  74. ***/
  75. li [class^="icon-"],
  76. li [class*=" icon-"] {
  77. display: inline-block;
  78. width: 1.25em;
  79. text-align: center;
  80. }
  81. li [class^="icon-"].icon-large,
  82. li [class*=" icon-"].icon-large {
  83. /* increased font size for icon-large */
  84. width: 1.5625em;
  85. }
  86. /***
  87. Close icon used for modal dialog and other UI element close buttons
  88. ***/
  89. .close {
  90. display: inline-block;
  91. margin-top: 0px;
  92. margin-right: 0px;
  93. width: 9px;
  94. height: 9px;
  95. background-repeat: no-repeat !important;
  96. background-image: url("../image/remove-icon-small.png") !important;
  97. }
  98. /***
  99. ie8 & ie9 modes
  100. ***/
  101. .visible-ie8 {
  102. display: none;
  103. }
  104. .ie8 .visible-ie8 {
  105. display: inherit !important;
  106. }
  107. .visible-ie9 {
  108. display: none;
  109. }
  110. .ie9 .visible-ie9 {
  111. display: inherit !important;
  112. }
  113. .hidden-ie8 {
  114. display: inherit;
  115. }
  116. .ie8 .hidden-ie8 {
  117. display: none !important;
  118. }
  119. .hidden-ie9 {
  120. display: inherit;
  121. }
  122. .ie9 .hidden-ie9 {
  123. display: none !important;
  124. }
  125. /***
  126. Fix link outlines after click
  127. ***/
  128. a,a:focus, a:hover, a:active {
  129. outline: 0;
  130. }
  131. /***
  132. IE8 fix for form input height in fluid rows
  133. ***/
  134. .ie8 .row-fluid [class*="span"] {
  135. min-height: 20px !important;
  136. }
  137. /***
  138. Fix grid offset used for reponsive layout handling(refer app.js=>handleResponsive)
  139. ***/
  140. .fix-offset {
  141. margin-left: 0px !important;
  142. }
  143. /***
  144. Misc tools
  145. ***/
  146. .visible-ie8 {
  147. display: none
  148. }
  149. .no-padding {
  150. padding: 0px !important;
  151. }
  152. .no-margin {
  153. margin: 0px !important;
  154. }
  155. .no-bottom-space {
  156. padding-bottom:0px !important;
  157. margin-bottom: 0px !important;
  158. }
  159. .no-top-space {
  160. padding-top:0px !important;
  161. margin-top: 0px !important;
  162. }
  163. .space5 {
  164. display: block;
  165. height: 5px !important;
  166. clear: both;
  167. }
  168. .space7 {
  169. height: 7px !important;
  170. clear: both;
  171. }
  172. .space10 {
  173. height: 10px !important;
  174. clear: both;
  175. }
  176. .space12 {
  177. height: 12px !important;
  178. clear: both;
  179. }
  180. .space15 {
  181. height: 15px !important;
  182. clear: both;
  183. }
  184. .space20 {
  185. height: 20px !important;
  186. clear: both;
  187. }
  188. .no-space {
  189. margin: 0px !important;
  190. padding: 0px !important;
  191. }
  192. .no-text-shadow {
  193. text-shadow: none !important;
  194. }
  195. .no-left-padding {
  196. padding-left: 0 !important;
  197. }
  198. .no-left-margin {
  199. margin-left: 0 !important;
  200. }
  201. .margin-bottom-10 {
  202. margin-bottom: 10px !important;
  203. }
  204. .margin-top-10 {
  205. margin-top: 10px !important;
  206. }
  207. .margin-bottom-15 {
  208. margin-bottom: 15px !important;
  209. }
  210. .margin-bottom-20 {
  211. margin-bottom: 20px !important;
  212. }
  213. .margin-top-20 {
  214. margin-top: 20px !important;
  215. }
  216. .margin-bottom-25 {
  217. margin-bottom: 25px !important;
  218. }
  219. .hide {
  220. display: none;
  221. }
  222. .bold {
  223. font-weight:600 !important;
  224. }
  225. .fix-margin {
  226. margin-left: 0px !important
  227. }
  228. .border {
  229. border: 1px solid #ddd
  230. }
  231. .inline {
  232. display: inline;
  233. }
  234. hr {
  235. margin: 20px 0;
  236. border: 0;
  237. border-top: 1px solid #E0DFDF;
  238. border-bottom: 1px solid #FEFEFE;
  239. }
  240. /********************
  241. GENERAL LAYOUT
  242. *********************/
  243. /***
  244. Header and header elements.
  245. ***/
  246. .border {
  247. border: 1px solid red;
  248. }
  249. .header {
  250. padding: 0 !important;
  251. margin: 0 !important;
  252. }
  253. .header.navbar-fixed-top {
  254. z-index: 9995 !important;
  255. }
  256. .header .brand {
  257. display: inline-block;
  258. margin-top: -1px;
  259. margin-right: 0;
  260. padding-left: 0;
  261. padding-right: 0;
  262. width: 225px;
  263. }
  264. .header .brand img {
  265. margin-left: 20px;
  266. }
  267. .header .btn-navbar {
  268. margin-bottom: 0px;
  269. padding-right: 0px;
  270. padding-top:10px;
  271. padding-bottom: 6px;
  272. background-image: none;
  273. filter:none;
  274. box-shadow: none;
  275. color: #fff;
  276. border: 0;
  277. }
  278. .header .btn-navbar:hover {
  279. text-decoration: none;
  280. }
  281. .header .navbar-inner {
  282. width: 100%;
  283. margin: 0 0 0 110px;
  284. border: 0px;
  285. padding: 0px;
  286. box-shadow: none;
  287. height: 42px;
  288. }
  289. .header .nav {
  290. display: block;
  291. }
  292. .header .nav > li {
  293. margin: 0px;
  294. padding: 0px;
  295. }
  296. .header .nav > li.dropdown,
  297. .header .nav > li.dropdown > a {
  298. padding-left: 4px;
  299. padding-right: 4px;
  300. }
  301. .header .nav > li.dropdown > a:last-child {
  302. padding-right: 0;
  303. }
  304. .header .nav > li.dropdown:last-child {
  305. padding-right: 2px;
  306. }
  307. .header .nav > li.dropdown .dropdown-toggle {
  308. margin: 0px;
  309. padding: 15px 10px 7px 10px;
  310. }
  311. .header .nav > li.dropdown .dropdown-toggle i {
  312. font-size: 18px;
  313. }
  314. .header .nav > li.dropdown.user .dropdown-toggle {
  315. padding: 6px 4px 7px 9px;
  316. }
  317. .header .nav > li.dropdown.user .dropdown-toggle:hover {
  318. text-decoration: none;
  319. }
  320. .header .nav > li.dropdown.user .dropdown-toggle .username {
  321. color: #ddd;
  322. }
  323. .header .nav li.dropdown.user .dropdown-toggle i {
  324. display: inline-block;
  325. margin-top: 5px;
  326. margin: 0;
  327. font-size: 16px;
  328. }
  329. .header .nav > li.dropdown.user .dropdown-menu i {
  330. width: 15px;
  331. display: inline-block;
  332. }
  333. .header .nav > li.dropdown .dropdown-toggle .badge {
  334. position: absolute;
  335. font-size: 11px !important;
  336. font-weight: 300;
  337. top: 8px;
  338. right: 24px;
  339. text-align: center;
  340. height: 14px;
  341. background-color: #e02222;
  342. padding: 2px 6px 2px 6px;
  343. -webkit-border-radius: 12px !important;
  344. -moz-border-radius: 12px !important;
  345. border-radius: 12px !important;
  346. text-shadow:none !important;
  347. }
  348. /* firefox hack for top bar badges */
  349. @-moz-document url-prefix() {
  350. .header .nav li.dropdown .dropdown-toggle .badge {
  351. padding: 1px 6px 3px 6px;
  352. }
  353. }
  354. .header .nav .dropdown-menu {
  355. margin-top: 3px;
  356. }
  357. /***
  358. Page container
  359. ***/
  360. .page-container {
  361. margin: 0px;
  362. padding: 0px;
  363. }
  364. .page-header-fixed .page-container {
  365. margin-top: 42px;
  366. }
  367. /***
  368. Page sidebar
  369. ***/
  370. /* ie8 fixes */
  371. .ie8 .page-sidebar {
  372. position: absolute;
  373. width: 225px;
  374. }
  375. ul.page-sidebar-menu {
  376. list-style: none;
  377. margin: 0;
  378. padding: 0;
  379. margin: 0;
  380. padding: 0;
  381. }
  382. ul.page-sidebar-menu > li {
  383. display: block;
  384. margin: 0;
  385. padding: 0;
  386. border: 0px;
  387. }
  388. ul.page-sidebar-menu > li.start > a {
  389. border-top-color: transparent !important;
  390. }
  391. ul.page-sidebar-menu > li:last-child > a,
  392. ul.page-sidebar-menu > li.last > a {
  393. border-bottom-color: transparent !important;
  394. }
  395. ul.page-sidebar-menu > li > a {
  396. display: block;
  397. position: relative;
  398. margin: 0;
  399. border: 0px;
  400. padding: 10px 15px;
  401. text-decoration: none;
  402. font-size: 12px;
  403. font-weight: 300;
  404. }
  405. .page-sidebar-fixed ul.page-sidebar-menu > li > a {
  406. -webkit-transition: all 0.2s ease;
  407. -moz-transition: all 0.2s ease;
  408. -o-transition: all 0.2s ease;
  409. transition: all 0.2s ease;
  410. }
  411. ul.page-sidebar-menu > li > a i {
  412. font-size: 16px;
  413. margin-right: 5px;
  414. text-shadow:none;
  415. }
  416. ul.page-sidebar-menu > li.break {
  417. margin-bottom: 20px;
  418. }
  419. ul.page-sidebar-menu > li.active > a {
  420. border: none;
  421. text-shadow:none;
  422. }
  423. ul.page-sidebar-menu > li.active > a .selected {
  424. display: block;
  425. width: 8px;
  426. height: 25px;
  427. background-image: url("../image/sidebar-menu-arrow.png");
  428. float: right;
  429. position: absolute;
  430. right:0px;
  431. top:8px;
  432. }
  433. .page-sidebar ul > li > a > .arrow:before {
  434. float: right;
  435. margin-top: 1px;
  436. margin-right: 5px;
  437. display: inline;
  438. font-size: 16px;
  439. font-family: FontAwesome;
  440. height: auto;
  441. content: "\f104";
  442. font-weight: 300;
  443. text-shadow:none;
  444. }
  445. ul.page-sidebar-menu > li > a > .arrow.open:before {
  446. float: right;
  447. margin-top: 1px;
  448. margin-right: 3px;
  449. display: inline;
  450. font-family: FontAwesome;
  451. height: auto;
  452. font-size: 16px;
  453. content: "\f107";
  454. font-weight: 300;
  455. text-shadow:none;
  456. }
  457. ul.page-sidebar-menu > li > ul.sub-menu {
  458. display: none;
  459. list-style: none;
  460. clear: both;
  461. margin: 8px 0px 8px 0px;
  462. }
  463. ul.page-sidebar-menu > li.active > ul.sub-menu {
  464. display: block;
  465. }
  466. ul.page-sidebar-menu > li > ul.sub-menu > li {
  467. background: none;
  468. margin: 0px;
  469. padding: 0px;
  470. margin-top: 1px !important;
  471. }
  472. ul.page-sidebar-menu > li > ul.sub-menu > li > a {
  473. display: block;
  474. margin: 0px 0px 0px 0px;
  475. padding: 5px 0px;
  476. padding-left: 44px !important;
  477. text-decoration: none;
  478. font-size: 12px;
  479. font-weight: 300;
  480. background: none;
  481. }
  482. /* 3rd level sub menu */
  483. ul.page-sidebar-menu > li > ul.sub-menu > li ul.sub-menu {
  484. display: none;
  485. list-style: none;
  486. clear: both;
  487. margin: 0px 0px 0px 0px;
  488. }
  489. ul.page-sidebar-menu > li > ul.sub-menu li > a > .arrow:before {
  490. float: right;
  491. margin-top: 1px;
  492. margin-right: 20px;
  493. display: inline;
  494. font-size: 16px;
  495. font-family: FontAwesome;
  496. height: auto;
  497. content: "\f104";
  498. font-weight: 300;
  499. text-shadow:none;
  500. }
  501. ul.page-sidebar-menu > li > ul.sub-menu li > a > .arrow.open:before {
  502. float: right;
  503. margin-top: 1px;
  504. margin-right: 18px;
  505. display: inline;
  506. font-family: FontAwesome;
  507. height: auto;
  508. font-size: 16px;
  509. content: "\f107";
  510. font-weight: 300;
  511. text-shadow:none;
  512. }
  513. ul.page-sidebar-menu > li.active > ul.sub-menu > li.active ul.sub-menu {
  514. display: block;
  515. }
  516. ul.page-sidebar-menu > li > ul.sub-menu > li ul.sub-menu li {
  517. background: none;
  518. margin: 0px;
  519. padding: 0px;
  520. margin-top: 1px !important;
  521. }
  522. ul.page-sidebar-menu > li > ul.sub-menu li > ul.sub-menu > li > a {
  523. display: block;
  524. margin: 0px 0px 0px 0px;
  525. padding: 5px 0px;
  526. text-decoration: none;
  527. font-size: 14px;
  528. font-weight: 300;
  529. background: none;
  530. }
  531. ul.page-sidebar-menu > li > ul.sub-menu > li > ul.sub-menu > li > a {
  532. padding-left: 60px;
  533. }
  534. ul.page-sidebar-menu > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu > li > a {
  535. padding-left: 80px;
  536. }
  537. ul.page-sidebar-menu > li.active > ul.sub-menu > li.active ul.sub-menu > li.active ul.sub-menu {
  538. display: block;
  539. }
  540. ul.page-sidebar-menu > li > ul.sub-menu li > ul.sub-menu > li > a > i {
  541. font-size: 13px;
  542. }
  543. /* sidebar search */
  544. .page-sidebar .sidebar-search {
  545. margin: 8px 20px 20px 20px;
  546. }
  547. .page-sidebar .sidebar-search .submit {
  548. display: block;
  549. float: right;
  550. margin-top: 8px;
  551. width: 13px;
  552. height: 13px;
  553. background-image: url(../image/search-icon.png);
  554. background-repeat: no-repeat;
  555. }
  556. .page-sidebar .sidebar-search input {
  557. margin: 0px;
  558. width: 165px;
  559. border: 0px;
  560. padding-left: 0px;
  561. padding-right: 0px;
  562. padding-bottom: 0px;
  563. font-size: 14px ;
  564. box-shadow: none;
  565. }
  566. .page-sidebar .sidebar-search .input-box {
  567. padding-bottom: 2px;
  568. }
  569. /***
  570. Sidebar toggler(show/hide)
  571. ***/
  572. .page-sidebar .sidebar-toggler {
  573. cursor: pointer;
  574. opacity: 0.5;
  575. filter: alpha(opacity=50);
  576. margin-top: 15px;
  577. margin-left: 175px;
  578. width: 29px;
  579. height: 29px;
  580. background-repeat: no-repeat;
  581. }
  582. .sidebar-toggler:hover {
  583. filter: alpha(opacity=100);
  584. opacity: 1;
  585. }
  586. .page-sidebar-closed .sidebar-toggler {
  587. margin-left: 3px;
  588. }
  589. .page-sidebar-closed .page-sidebar .sidebar-search {
  590. height: 34px;
  591. width: 29px;
  592. margin-left: 3px;
  593. margin-bottom: 15px !important;
  594. }
  595. .page-sidebar-closed .page-sidebar .sidebar-search input {
  596. display: none;
  597. }
  598. .page-sidebar-closed .page-sidebar .sidebar-search .submit {
  599. margin: 11px 7px !important;
  600. display: block !important;
  601. }
  602. .page-sidebar-closed .page-sidebar .sidebar-search .input-box {
  603. border-bottom: 0 !important;
  604. }
  605. .page-sidebar-closed .page-sidebar .sidebar-search.open {
  606. height: 34px;
  607. width: 255px;
  608. overflow: hidden;
  609. }
  610. .page-sidebar-closed .page-sidebar .sidebar-search.open input {
  611. margin-top: 3px;
  612. padding-left: 10px;
  613. padding-bottom: 2px;
  614. width: 180px;
  615. display: inline-block !important;
  616. }
  617. .page-sidebar-closed .page-sidebar .sidebar-search.open .submit {
  618. display: inline-block;
  619. width: 13px;
  620. height: 13px;
  621. margin: 10px 8px 9px 6px !important;
  622. }
  623. .page-sidebar-closed .page-sidebar .sidebar-search.open .remove {
  624. background-repeat: no-repeat;
  625. width: 11px;
  626. height: 11px;
  627. margin: 11px 6px 7px 8px !important;
  628. display: inline-block !important;
  629. float: left !important;
  630. }
  631. .page-sidebar-closed ul.page-sidebar-menu > li > a .selected {
  632. right: -3px !important;
  633. }
  634. .page-sidebar-closed ul.page-sidebar-menu > li > a > .title,
  635. .page-sidebar-closed ul.page-sidebar-menu > li > a > .arrow {
  636. display: none !important;
  637. }
  638. .page-sidebar-closed .sidebar-toggler {
  639. margin-right: 3px;
  640. }
  641. .page-sidebar-closed .page-sidebar .sidebar-search {
  642. margin-top: 6px;
  643. margin-bottom: 6px;
  644. }
  645. .page-sidebar-closed ul.page-sidebar-menu {
  646. width: 35px !important;
  647. }
  648. .page-sidebar-closed ul.page-sidebar-menu > li > a {
  649. padding-left: 7px;
  650. }
  651. .page-sidebar-fixed.page-sidebar-closed ul.page-sidebar-menu > li > a {
  652. -webkit-transition: all 0.2s ease;
  653. -moz-transition: all 0.2s ease;
  654. -o-transition: all 0.2s ease;
  655. transition: all 0.2s ease;
  656. }
  657. .page-sidebar-closed ul.page-sidebar-menu > li:hover {
  658. width: 225px !important;
  659. position: relative !important;
  660. z-index: 2000;
  661. display: block !important;
  662. }
  663. .page-sidebar-closed ul.page-sidebar-menu > li:hover .selected {
  664. display: none;
  665. }
  666. .page-sidebar-closed ul.page-sidebar-menu > li:hover > a > i {
  667. margin-right: 10px;
  668. }
  669. .page-sidebar-closed ul.page-sidebar-menu > li:hover .title {
  670. display: inline !important;
  671. }
  672. .page-sidebar-closed ul.page-sidebar-menu > li > .sub-menu {
  673. display: none !important;
  674. }
  675. .page-sidebar-closed ul.page-sidebar-menu > li:hover > .sub-menu {
  676. width: 189px;
  677. position: absolute;
  678. z-index: 2000;
  679. left: 36px;
  680. margin-top: 0;
  681. top: 100%;
  682. display: block !important;
  683. }
  684. .page-sidebar-closed ul.page-sidebar-menu > li:hover > .sub-menu > li > .sub-menu,
  685. .page-sidebar-closed ul.page-sidebar-menu > li:hover > .sub-menu > li > .sub-menu > li > .sub-menu {
  686. width: 189px;
  687. }
  688. /* 2rd level sub menu*/
  689. .page-sidebar-closed ul.page-sidebar-menu > li:hover > .sub-menu > li > a {
  690. padding-left: 15px !important;
  691. }
  692. /* 3rd level sub menu*/
  693. .page-sidebar-closed ul.page-sidebar-menu > li > ul.sub-menu > li > .sub-menu > li > a {
  694. padding-left: 30px !important;
  695. }
  696. /* 4rd level sub menu*/
  697. .page-sidebar-closed ul.page-sidebar-menu > li > ul.sub-menu > li > .sub-menu > li > .sub-menu > li > a {
  698. padding-left: 45px !important;
  699. }
  700. /* sidebar container */
  701. .page-sidebar-closed .page-sidebar {
  702. width: 35px;
  703. }
  704. .page-sidebar-closed .page-content {
  705. margin-left: 35px !important;
  706. }
  707. /***
  708. Page content
  709. ***/
  710. .page-content {
  711. margin-top: 0px;
  712. padding: 0px;
  713. background-color: #fff;
  714. }
  715. .ie8 .page-content {
  716. margin-left: 225px;
  717. margin-top: 0px;
  718. min-height: 760px;
  719. }
  720. .ie8 .page-sidebar-fixed .page-content {
  721. min-height: 600px;
  722. }
  723. .ie8 .page-content.no-min-height {
  724. min-height: auto;
  725. }
  726. .page-full-width .page-content {
  727. margin-left: 0 !important;
  728. }
  729. /***
  730. Page title
  731. ***/
  732. .page-title {
  733. padding: 0px;
  734. font-size: 30px;
  735. letter-spacing: -1px;
  736. display: block;
  737. color: #666;
  738. margin: 20px 0px 15px 0px;
  739. font-weight: 300;
  740. font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial;
  741. }
  742. .page-title small {
  743. font-size: 14px;
  744. letter-spacing: 0px;
  745. font-weight: 300;
  746. color: #888;
  747. }
  748. /***
  749. Page breadcrumb
  750. ***/
  751. .page-content .breadcrumb {
  752. -webkit-border-radius: 0px;
  753. -moz-border-radius: 0px;
  754. border-radius: 0px;
  755. box-shadow: none;
  756. padding-right: 0px;
  757. padding-left: 8px;
  758. margin-bottom: 25px;
  759. border:0px !important;
  760. background-color: #eee;
  761. }
  762. .page-content .breadcrumb a,
  763. .page-content .breadcrumb i,
  764. .page-content .breadcrumb span {
  765. color: #333;
  766. font-size: 14px;
  767. text-shadow:none;
  768. }
  769. .page-content .breadcrumb i {
  770. color: #666;
  771. }
  772. /***
  773. Dashboard date range panel
  774. ***/
  775. .page-content .breadcrumb .dashboard-date-range {
  776. display: none;
  777. padding-top: -1px;
  778. margin-right: 0px;
  779. margin-top: -8px;
  780. padding: 8px;
  781. padding-bottom: 7px;
  782. cursor: pointer;
  783. color: #fff;
  784. background-color: #e02222;
  785. }
  786. .page-content .breadcrumb .dashboard-date-range span {
  787. font-size: 12px;
  788. font-weight: 300;
  789. color: #fff;
  790. text-transform: uppercase;
  791. }
  792. .page-content .breadcrumb .dashboard-date-range .icon-calendar {
  793. text-transform: normal;
  794. color: #fff;
  795. margin-top: 0px;
  796. font-size: 14px;
  797. }
  798. .page-content .breadcrumb .dashboard-date-range span {
  799. font-weight: normal;
  800. }
  801. .page-content .breadcrumb .dashboard-date-range .icon-angle-down {
  802. color:#fff;
  803. font-size: 16px;
  804. }
  805. /***
  806. Footer
  807. ***/
  808. .footer {
  809. padding: 8px 20px 5px 20px;
  810. font-size: 12px;
  811. }
  812. .footer:after,
  813. .footer:before {
  814. content: "";
  815. display: table;
  816. line-height: 0;
  817. }
  818. .footer:after {
  819. clear: both;
  820. }
  821. .footer .footer-inner {
  822. float: left;
  823. display: inline-block;
  824. }
  825. .footer .footer-tools {
  826. float: right;
  827. display: inline-block;
  828. }
  829. .footer .footer-tools .go-top {
  830. display: block;
  831. text-decoration: none;
  832. cursor: pointer;
  833. margin-top: -2px;
  834. margin-right: 0px;
  835. margin-bottom: 0px;
  836. font-size: 16px;
  837. padding: 0px 6px 0px 6px;
  838. }
  839. .footer .footer-tools .go-top i {
  840. font-size: 22px;
  841. margin-bottom: 5px;
  842. }
  843. /* begin: fixed footer */
  844. .page-footer-fixed .footer {
  845. position: fixed;
  846. left: 0;
  847. right: 0;
  848. z-index: 10000;
  849. bottom: 0;
  850. }
  851. .page-footer-fixed .page-container {
  852. margin-bottom: 33px;
  853. }
  854. .page-footer-fixed.page-sidebar-fixed .footer {
  855. margin-left: 0 !important;
  856. }
  857. /* end: fixed footer */
  858. /********************
  859. GENERAL UI ELEMENTS
  860. *********************/
  861. /***
  862. Icon stuff
  863. ***/
  864. i.icon, a.icon {
  865. color: #999;
  866. margin-right: 5px;
  867. font-weight: normal;
  868. font-size: 13px;
  869. }
  870. i.icon-black {
  871. color: #000 !important;
  872. }
  873. a.icon:hover {
  874. text-decoration: none;
  875. -webkit-transition: all 0.1s ease-in-out;
  876. -moz-transition: all 0.1s ease-in-out;
  877. -o-transition: all 0.1s ease-in-out;
  878. -ms-transition: all 0.1s ease-in-out;
  879. transition: all 0.1s ease-in-out;
  880. opacity: .4;
  881. filter:alpha(opacity=40);
  882. }
  883. a.icon.huge i{
  884. font-size: 16px !important;
  885. }
  886. i.big {
  887. font-size: 20px;
  888. }
  889. i.warning {
  890. color: #d12610;
  891. }
  892. i.critical {
  893. color: #37b7f3;
  894. }
  895. i.normal {
  896. color: #52e136;
  897. }
  898. /***
  899. Custom wells
  900. ***/
  901. .well {
  902. background-color: #fafafa;
  903. border: 1px solid #eee;
  904. -webkit-border-radius: 0px;
  905. -moz-border-radius: 0px;
  906. border-radius: 0px;
  907. -webkit-box-shadow: none !important;
  908. -moz-box-shadow: none !important;
  909. box-shadow: none !important;
  910. }
  911. .well.mini {
  912. padding: 7px !important;
  913. }
  914. /***
  915. Form stuff
  916. ***/
  917. .form-section {
  918. margin: 15px 0px 20px 0px !important;
  919. padding-bottom: 5px;
  920. border-bottom: 1px solid #eee;
  921. }
  922. .form form {
  923. margin: 0px !important;
  924. padding: 0px !important;
  925. }
  926. .no-bottom-space {
  927. padding-bottom: 0px !important;
  928. margin-bottom: 0px !important;
  929. }
  930. .form .form-actions{
  931. margin-top: 0px !important;
  932. margin-top: 40px;
  933. padding-left: 190px;
  934. }
  935. .portlet.box .form .form-actions,
  936. .portlet.solid .form .form-actions {
  937. margin-left:-10px !important;
  938. margin-right:-10px !important;
  939. margin-bottom: -10px !important;
  940. }
  941. /***
  942. Bordered form layout
  943. ***/
  944. /***
  945. Input icons
  946. ***/
  947. /* input with right aligned and colored icons */
  948. .input-icon input {
  949. padding-right: 25px !important;
  950. }
  951. .input-icon .input-info,
  952. .input-icon .input-error,
  953. .input-icon .input-warning,
  954. .input-icon .input-success {
  955. display: inline-block !important;
  956. position: relative !important;
  957. top: 7px;
  958. right: 25px !important;
  959. font-size: 16px;
  960. }
  961. .input-icon .input-info {
  962. color:#27a9e3;
  963. }
  964. .input-icon .input-error {
  965. color:#B94A48;
  966. }
  967. .input-icon .input-warning {
  968. color: #C09853;
  969. }
  970. .input-icon .input-success {
  971. color: #468847;
  972. }
  973. /* input with left aligned icons */
  974. .input-icon.left i {
  975. color: #ccc;
  976. display: block !important;
  977. position: absolute !important;
  978. z-index: 1;
  979. margin: 9px 2px 4px 10px;
  980. width: 16px;
  981. height: 16px;
  982. font-size: 16px;
  983. text-align: center;
  984. }
  985. .input-icon.left input {
  986. padding-left: 33px !important;
  987. }
  988. /***
  989. Portlets
  990. ***/
  991. .portlet {
  992. clear: both;
  993. margin-top: 0px;
  994. margin-bottom: 25px;
  995. padding: 0px;
  996. }
  997. .portlet-title {
  998. margin-bottom: 15px;
  999. border-bottom: 1px solid #eee;
  1000. }
  1001. .portlet-title:after,
  1002. .portlet-title:before {
  1003. content: "";
  1004. display: table;
  1005. line-height: 0;
  1006. }
  1007. .portlet-title:after {
  1008. clear: both;
  1009. }
  1010. .portlet-title .caption {
  1011. float: left;
  1012. display: inline-block;
  1013. font-size: 15px;
  1014. font-weight: 400;
  1015. margin: 0;
  1016. padding: 0;
  1017. margin-bottom: 7px;
  1018. }
  1019. .portlet-title .caption i {
  1020. float: left;
  1021. margin-top: 5px;
  1022. display: inline-block !important;
  1023. font-size: 13px;
  1024. margin-right: 5px;
  1025. color: #666;
  1026. }
  1027. .portlet.blue > .portlet-title .caption, .portlet-title.blue .caption,
  1028. .portlet.green > .portlet-title .caption, .portlet-title.green .caption,
  1029. .portlet.yellow > .portlet-title .caption, .portlet-title.yellow .caption,
  1030. .portlet.red > .portlet-title .caption, .portlet-title.red .caption,
  1031. .portlet.purple > .portlet-title .caption, .portlet-title.purple .caption,
  1032. .portlet.grey > .portlet-title .caption, .portlet-title.dark-grey .caption {
  1033. color: #fff;
  1034. }
  1035. .portlet.box.blue > .portlet-title .caption > i,
  1036. .portlet.box.green > .portlet-title .caption > i,
  1037. .portlet.box.grey > .portlet-title .caption > i,
  1038. .portlet.box.yellow > .portlet-title .caption > i,
  1039. .portlet.box.red > .portlet-title .caption > i,
  1040. .portlet.box.purple > .portlet-title .caption > i,
  1041. .portlet.box.light-grey > .portlet-title .caption > i{
  1042. color: #fff;
  1043. }
  1044. .sortable .portlet .portlet-title {
  1045. cursor: move;
  1046. }
  1047. .portlet-title .tools,
  1048. .portlet-title .actions
  1049. {
  1050. display: inline-block;
  1051. padding: 0;
  1052. margin: 0;
  1053. margin-top: 6px;
  1054. float: right;
  1055. }
  1056. .portlet-title .tools > a {
  1057. display: inline-block;
  1058. height: 16px;
  1059. margin-left:5px;
  1060. }
  1061. .portlet-title .dropdown-menu i {
  1062. color: #000 !important;
  1063. }
  1064. .portlet-title .tools > a.remove {
  1065. background-image:url(../image/portlet-remove-icon.png);
  1066. background-repeat: no-repeat;
  1067. width: 11px;
  1068. }
  1069. .portlet-title .tools > a.config {
  1070. background-image:url(../image/portlet-config-icon.png);
  1071. background-repeat: no-repeat;
  1072. width: 12px;
  1073. }
  1074. .portlet-title .tools > a.reload {
  1075. background-image:url(../image/portlet-reload-icon.png);
  1076. width: 13px;
  1077. }
  1078. .portlet-title .tools > a.expand {
  1079. background-image:url(../image/portlet-expand-icon.png);
  1080. width: 14px;
  1081. }
  1082. .portlet-title .tools > a.collapse {
  1083. background-image:url(../image/portlet-collapse-icon.png);
  1084. width: 14px;
  1085. }
  1086. .portlet-title .tools > a:hover {
  1087. text-decoration: none;
  1088. -webkit-transition: all 0.1s ease-in-out;
  1089. -moz-transition: all 0.1s ease-in-out;
  1090. -o-transition: all 0.1s ease-in-out;
  1091. -ms-transition: all 0.1s ease-in-out;
  1092. transition: all 0.1s ease-in-out;
  1093. opacity:.6;
  1094. filter:'alpha(opacity=60)';
  1095. }
  1096. .portlet-title .actions > .btn-group {
  1097. margin-top: -12px;
  1098. }
  1099. .portlet-title .actions > .btn {
  1100. padding: 4px 10px;
  1101. margin-top: -13px;
  1102. }
  1103. .portlet-title .actions > .btn-group > .btn {
  1104. padding: 4px 10px;
  1105. margin-top: -1px;
  1106. }
  1107. .portlet-title .actions > .btn.mini {
  1108. margin-top: -12px;
  1109. padding: 4px 10px;
  1110. }
  1111. .portlet-title .pagination.pagination-small {
  1112. float: right !important;
  1113. display: inline-block !important;
  1114. margin: 0px;
  1115. margin-top: -2px;
  1116. }
  1117. .portlet-body {
  1118. clear: both;
  1119. padding: 0;
  1120. }
  1121. .portlet-body.light-blue, .portlet.light-blue {
  1122. background-color: #bfd5fa !important;
  1123. }
  1124. .portlet-body.blue, .portlet.blue {
  1125. background-color: #4b8df8 !important;
  1126. }
  1127. .portlet-body.red, .portlet.red {
  1128. background-color: #e02222 !important;
  1129. }
  1130. .portlet-body.yellow, .portlet.yellow {
  1131. background-color: #ffb848 !important;
  1132. }
  1133. .portlet-body.green, .portlet.green {
  1134. background-color: #35aa47 !important;
  1135. }
  1136. .portlet-body.purple, .portlet.purple {
  1137. background-color: #852b99 !important;
  1138. }
  1139. .portlet-body.light-grey, .portlet.light-grey {
  1140. background-color: #fafafa !important;
  1141. }
  1142. .portlet-body.dark-grey, .portlet.dark-grey {
  1143. background-color: #555555 !important;
  1144. }
  1145. .portlet-body .btn-toolbar {
  1146. margin: 0px !important;
  1147. padding: 0px !important;
  1148. }
  1149. .portlet-body .btn-group {
  1150. margin: 0px !important;
  1151. padding: 0px !important;
  1152. /*margin-bottom: 10px !important;*/
  1153. }
  1154. /* draggable girds */
  1155. .ui-sortable-placeholder {
  1156. border: 1px dotted black;
  1157. visibility: visible !important;
  1158. height: 100% !important;
  1159. }
  1160. .ui-sortable-placeholder * {
  1161. visibility: hidden;
  1162. }
  1163. .sortable-box-placeholder {
  1164. background-color: #f5f5f5;
  1165. border: 1px dashed #DDDDDD;
  1166. display: block;
  1167. /* float: left;*/
  1168. margin-top: 0px !important;
  1169. margin-bottom: 24px !important;
  1170. }
  1171. .sortable-box-placeholder * {
  1172. visibility:hidden;
  1173. }
  1174. .copyrights{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
  1175. /***
  1176. Solid colored portlet
  1177. ***/
  1178. .portlet.solid {
  1179. padding: 10px;
  1180. }
  1181. .portlet.solid .portlet-title .tools {
  1182. margin-top: 2px;
  1183. border: 0px;
  1184. }
  1185. .portlet.solid .portlet-title {
  1186. margin-bottom: 5px;
  1187. border: 0px;
  1188. }
  1189. .portlet.solid.bordered .portlet-title {
  1190. margin-bottom: 15px;
  1191. }
  1192. .portlet.solid.red .portlet-title,
  1193. .portlet.solid.red .portlet-title i,
  1194. .portlet.solid.red .portlet-body,
  1195. .portlet.solid.green .portlet-title,
  1196. .portlet.solid.green .portlet-title i,
  1197. .portlet.solid.green .portlet-body,
  1198. .portlet.solid.yellow .portlet-title,
  1199. .portlet.solid.yellow .portlet-title i,
  1200. .portlet.solid.yellow .portlet-body,
  1201. .portlet.solid.grey .portlet-title,
  1202. .portlet.solid.grey .portlet-title i,
  1203. .portlet.solid.grey .portlet-body,
  1204. .portlet.solid.purple .portlet-title,
  1205. .portlet.solid.purple .portlet-title i,
  1206. .portlet.solid.purple .portlet-body,
  1207. .portlet.solid.blue .portlet-title,
  1208. .portlet.solid.blue .portlet-title i,
  1209. .portlet.solid.blue .portlet-body {
  1210. border: 0;
  1211. color: #fff;
  1212. }
  1213. .portlet.bordered {
  1214. border-left: 2px solid #ddd;
  1215. }
  1216. /***
  1217. Box portlet
  1218. ***/
  1219. .portlet.box {
  1220. padding:0px !important
  1221. }
  1222. .portlet.box .portlet-title {
  1223. padding:8px 10px 2px 10px;
  1224. border-bottom: 1px solid #eee;
  1225. color: #fff !important;
  1226. }
  1227. .portlet.box .portlet-title > .actions > .btn > i {
  1228. color: #fff !important;
  1229. }
  1230. .portlet.box .portlet-title .tools {
  1231. margin-top: 3px;
  1232. }
  1233. .portlet.box .portlet-title .tools > a.remove,
  1234. .portlet.solid .portlet-title .tools > a.remove {
  1235. background-image:url(../image/portlet-remove-icon-white.png);
  1236. }
  1237. .portlet.box .portlet-title .tools > a.config,
  1238. .portlet.solid .portlet-title .tools > a.config {
  1239. background-image:url(../image/portlet-config-icon-white.png);
  1240. }
  1241. .portlet.box .portlet-title .tools > a.reload,
  1242. .portlet.solid .portlet-title .tools > a.reload {
  1243. background-image:url(../image/portlet-reload-icon-white.png);
  1244. }
  1245. .portlet.box .portlet-title .tools > a.expand,
  1246. .portlet.solid .portlet-title .tools > a.expand {
  1247. background-image:url(../image/portlet-expand-icon-white.png);
  1248. }
  1249. .portlet.box .portlet-title .tools > a.collapse,
  1250. .portlet.solid .portlet-title .tools > a.collapse {
  1251. background-image:url(../image/portlet-collapse-icon-white.png);
  1252. }
  1253. /* portlet buttons */
  1254. .portlet.box .portlet-body {
  1255. background-color: #fff;
  1256. padding: 10px;
  1257. }
  1258. .portlet.box .portlet-title {
  1259. margin-bottom: 0px;
  1260. }
  1261. .portlet.box.blue .portlet-title {
  1262. background-color: #4b8df8;
  1263. }
  1264. .portlet.box.blue {
  1265. border: 1px solid #b4cef8;
  1266. border-top: 0;
  1267. }
  1268. .portlet.box.red .portlet-title {
  1269. background-color: #e02222;
  1270. }
  1271. .portlet.box.red {
  1272. border: 1px solid #ef8476;
  1273. border-top: 0;
  1274. }
  1275. .portlet.box.yellow .portlet-title {
  1276. background-color: #ffb848;
  1277. }
  1278. .portlet.box.yellow {
  1279. border: 1px solid #fccb7e;
  1280. border-top: 0;
  1281. }
  1282. .portlet.box.green .portlet-title {
  1283. background-color: #35aa47;
  1284. }
  1285. .portlet.box.green {
  1286. border: 1px solid #77e588;
  1287. border-top: 0;
  1288. }
  1289. .portlet.box.purple .portlet-title {
  1290. background-color: #852b99;
  1291. }
  1292. .portlet.box.purple {
  1293. border: 1px solid #af5cc1;
  1294. border-top: 0;
  1295. }
  1296. .portlet.box.grey .portlet-title {
  1297. background-color: #555555;
  1298. }
  1299. .portlet.box.grey {
  1300. border: 1px solid #9d9c9c;
  1301. border-top: 0;
  1302. }
  1303. .portlet.box.light-grey .portlet-title {
  1304. background-color: #aaa;
  1305. }
  1306. .portlet.box.light-grey {
  1307. border: 1px solid #eee;
  1308. border-top: 0;
  1309. }
  1310. /***
  1311. Charts and statistics
  1312. ***/
  1313. .chart, .pie, .bars {
  1314. overflow: hidden;
  1315. height: 300px;
  1316. }
  1317. /***
  1318. Statistic lists
  1319. ***/
  1320. .item-list.table .percent {
  1321. width: 30px;
  1322. float: right;
  1323. margin-right: 10px;
  1324. margin-top: 3px;
  1325. }
  1326. .item-list.table .title {
  1327. padding-top: -5px;
  1328. }
  1329. /***
  1330. Chart tooltips
  1331. ***/
  1332. .chart-tooltip {
  1333. clear: both;
  1334. z-index: 100;
  1335. background-color: #736e6e !important;
  1336. padding: 5px !important;
  1337. color: #fff;
  1338. }
  1339. .chart-tooltip .label {
  1340. clear: both;
  1341. }
  1342. /***
  1343. Mini chart containers
  1344. ***/
  1345. .bar-chart {
  1346. display: none
  1347. }
  1348. .line-chart {
  1349. display: none
  1350. }
  1351. /***
  1352. Custom icon buttons
  1353. ***/
  1354. .icon-btn {
  1355. height: 70px;
  1356. width: 50px;
  1357. margin: 10px 0px 10px 0px;
  1358. border: 1px solid #ddd;
  1359. padding: 16px 0px 0px 0px;
  1360. background-color: #fafafa !important;
  1361. background-image: none !important;
  1362. filter:none !important;
  1363. -webkit-box-shadow: none !important;
  1364. -moz-box-shadow: none !important;
  1365. box-shadow: none !important;
  1366. display:block !important;
  1367. color: #646464 !important;
  1368. text-shadow: none !important;
  1369. text-align: center;
  1370. cursor: pointer;
  1371. position: relative;
  1372. -webkit-transition: all 0.3s ease !important;
  1373. -moz-transition: all 0.3s ease !important;
  1374. -ms-transition: all 0.3s ease !important;
  1375. -o-transition: all 0.3s ease !important;
  1376. transition: all 0.3s ease !important;
  1377. }
  1378. .ie8 .icon-btn:hover {
  1379. filter: none !important;
  1380. }
  1381. .icon-btn:hover {
  1382. text-decoration: none !important;
  1383. border-color: #999 !important;
  1384. color: #444 !important;
  1385. text-shadow: 0 1px 0px rgba(255, 255, 255, 1) !important;
  1386. -webkit-transition: all 0.3s ease !important;
  1387. -moz-transition: all 0.3s ease !important;
  1388. -ms-transition: all 0.3s ease !important;
  1389. -o-transition: all 0.3s ease !important;
  1390. transition: all 0.3s ease !important;
  1391. -webkit-box-shadow: none !important;
  1392. -moz-box-shadow: none !important;
  1393. box-shadow: none !important;
  1394. }
  1395. .icon-btn:hover .badge {
  1396. -webkit-transition: all 0.3s ease !important;
  1397. -moz-transition: all 0.3s ease !important;
  1398. -ms-transition: all 0.3s ease !important;
  1399. -o-transition: all 0.3s ease !important;
  1400. transition: all 0.3s ease !important;
  1401. -webkit-box-shadow: none !important;
  1402. -moz-box-shadow: none !important;
  1403. box-shadow: none !important;
  1404. }
  1405. .icon-btn i {
  1406. font-size: 20px !important;
  1407. color: #777 !important;
  1408. }
  1409. .icon-btn .glyphicons {
  1410. padding: 0px;
  1411. }
  1412. .icon-btn .glyphicons i:before {
  1413. font-size: 20px !important;
  1414. color: #777 !important;
  1415. }
  1416. .icon-btn div {
  1417. font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial;
  1418. margin-top: 5px;
  1419. margin-bottom: 20px;
  1420. color: #000;
  1421. font-size: 11px;
  1422. font-weight: 300;
  1423. }
  1424. .icon-btn .badge {
  1425. position: absolute;
  1426. font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial;
  1427. font-size: 11px !important;
  1428. font-weight: 300;
  1429. top: -5px;
  1430. right: -5px;
  1431. padding: 3px 7px 3px 7px;
  1432. color: white !important;
  1433. text-shadow: none;
  1434. border-width: 0;
  1435. border-style: solid;
  1436. -webkit-border-radius: 12px !important;
  1437. -moz-border-radius: 12px !important;
  1438. border-radius: 12px !important;
  1439. -webkit-box-shadow: none;
  1440. -moz-box-shadow: none;
  1441. box-shadow: none;
  1442. }
  1443. /* for firefox only */
  1444. @-moz-document url-prefix() {
  1445. .icon-btn .badge {
  1446. padding: 2px 7px 4px 7px;
  1447. }
  1448. }
  1449. /* extended dropdowns */
  1450. .dropdown-menu.extended {
  1451. min-width: 160px !important;
  1452. max-width: 300px !important;
  1453. width: 233px !important;
  1454. background-color: #ffffff !important;
  1455. }
  1456. .dropdown-menu.extended:before,
  1457. .dropdown-menu.extended:after {
  1458. border-bottom-color: #ddd !important;
  1459. }
  1460. .dropdown-menu.extended li a{
  1461. display: block;
  1462. padding: 5px 10px !important;
  1463. clear: both;
  1464. font-weight: normal;
  1465. line-height: 20px;
  1466. white-space: normal !important;
  1467. }
  1468. .dropdown-menu.extended li i{
  1469. margin-right: 3px;
  1470. }
  1471. .dropdown-menu.extended li a{
  1472. font-size: 13px;
  1473. padding: 10px !important;
  1474. background-color: #ffffff;
  1475. }
  1476. .dropdown-menu.extended li a:hover {
  1477. background-image: none;
  1478. background-color: #f5f5f5;
  1479. color: #000;
  1480. filter:none;
  1481. }
  1482. .dropdown-menu.extended li p{
  1483. padding: 10px;
  1484. background-color: #eee;
  1485. margin: 0px;
  1486. font-size: 14px;
  1487. font-weight: 300;
  1488. color: #000;
  1489. }
  1490. .dropdown-menu.extended li a{
  1491. padding: 7px 0 5px 0px;
  1492. list-style: none;
  1493. border-bottom: 1px solid #f4f4f4 !important;
  1494. font-size: 12px;
  1495. text-shadow: none;
  1496. }
  1497. .dropdown-menu.extended li:first-child a {
  1498. border-top: none;
  1499. border-bottom: 1px solid #f4f4f4 !important;
  1500. }
  1501. .dropdown-menu.extended li:last-child a {
  1502. border-top: 1px solid white !important;
  1503. border-bottom: 1px solid #f4f4f4 !important;
  1504. }
  1505. .dropdown-menu.extended li.external > a {
  1506. font-size: 13px;
  1507. font-weight: 400;
  1508. }
  1509. .dropdown-menu.extended li.external > a > i{
  1510. margin-top: 3px;
  1511. float: right;
  1512. }
  1513. /* header notifications dropdowns */
  1514. .dropdown-menu.notification li > a > .label {
  1515. width: 10px;
  1516. padding: 2px 4px;
  1517. margin-right: 2px;
  1518. text-align: center !important;
  1519. }
  1520. .dropdown-menu.notification li > a > .label i {
  1521. text-align: center !important;
  1522. }
  1523. .dropdown-menu.notification li a .time {
  1524. font-size: 12px;
  1525. font-style: italic;
  1526. font-weight: 600;
  1527. text-align: right;
  1528. }
  1529. /* header inbox dropdowns */
  1530. .dropdown-menu.inbox li a .photo img {
  1531. float: left;
  1532. height: 40px;
  1533. width: 40px;
  1534. margin-right: 6px;
  1535. }
  1536. .dropdown-menu.inbox li a .subject {
  1537. display: block;
  1538. }
  1539. .dropdown-menu.inbox li a .subject .from {
  1540. font-size: 14px;
  1541. font-weight: 400;
  1542. color: #02689b;
  1543. }
  1544. .dropdown-menu.inbox li a .subject .time {
  1545. font-size: 12px;
  1546. font-weight: 600;
  1547. font-style: italic;
  1548. position: absolute;
  1549. right: 10px;
  1550. }
  1551. .dropdown-menu.inbox li a .message {
  1552. display: block !important;
  1553. font-size: 12px;
  1554. }
  1555. /* header tasks */
  1556. .dropdown-menu.tasks .task {
  1557. margin-bottom: 5px;
  1558. }
  1559. .dropdown-menu.tasks .task .desc {
  1560. font-size: 13px;
  1561. font-weight: 300;
  1562. }
  1563. .dropdown-menu.tasks .task .percent {
  1564. font-size: 13px;
  1565. font-weight: 600;
  1566. float: right;
  1567. display: inline-block;
  1568. }
  1569. .dropdown-menu.tasks .progress {
  1570. display: block;
  1571. height: 10px;
  1572. margin: 0px;
  1573. }
  1574. /***
  1575. General list for item with image
  1576. ***/
  1577. .item-list li .img {
  1578. height: 50px;
  1579. width: 50px;
  1580. float: left;
  1581. margin-top: 3px;
  1582. margin-right: 5px;
  1583. }
  1584. .item-list {
  1585. margin: 0px;
  1586. list-style: none;
  1587. }
  1588. .item-list li {
  1589. padding: 7px 0 5px 0px;
  1590. list-style: none;
  1591. border-top: 1px solid white;
  1592. border-bottom: 1px solid #EBEBEB;
  1593. font-size: 12px;
  1594. }
  1595. .item-list li:first-child {
  1596. border-top: none;
  1597. border-bottom: 1px solid #EBEBEB;
  1598. }
  1599. .item-list li:last-child {
  1600. border-top: none;
  1601. border-bottom: none;
  1602. }
  1603. .item-list li .label {
  1604. margin-right: 5px;
  1605. }
  1606. .item-list.todo li .label {
  1607. position: absolute;
  1608. right: 80px;
  1609. }
  1610. .item-list.todo li .actions {
  1611. position: absolute;
  1612. right: 45px;
  1613. }
  1614. /***
  1615. Custom tables
  1616. ***/
  1617. .table.table-full-width {
  1618. width: 100% !important;
  1619. }
  1620. .table .m-btn {
  1621. margin-top: 0px;
  1622. margin-left: 0px;
  1623. margin-right: 5px;
  1624. }
  1625. .table thead tr th {
  1626. font-size: 11px;
  1627. font-weight: 600;
  1628. }
  1629. .table-advance {
  1630. margin-bottom: 10px !important;
  1631. }
  1632. .table-advance thead {
  1633. color: #999;
  1634. }
  1635. .table-advance thead tr th{
  1636. background-color: #DDD;
  1637. font-size: 14px;
  1638. font-weight: 400;
  1639. color: #666;
  1640. }
  1641. .table-advance div.success,
  1642. .table-advance div.info,
  1643. .table-advance div.important,
  1644. .table-advance div.warning,
  1645. .table-advance div.danger {
  1646. position: absolute;
  1647. margin-top:-5px;
  1648. float: left;
  1649. width: 2px;
  1650. height: 30px;
  1651. margin-right: 20px !important;
  1652. }
  1653. .table-advance tr td {
  1654. border-left-width: 0px;
  1655. }
  1656. .table-advance tr td:first-child {
  1657. border-left-width: 1px !important;
  1658. }
  1659. .table-advance tr td.highlight:first-child a {
  1660. margin-left: 15px;
  1661. }
  1662. .table-advance td.highlight div.success {
  1663. border-left: 2px solid #66ee66;
  1664. }
  1665. .table-advance td.highlight div.info {
  1666. border-left: 2px solid #87ceeb;
  1667. }
  1668. .table-advance td.highlight div.important {
  1669. border-left: 2px solid #f02c71;
  1670. }
  1671. .table-advance td.highlight div.warning {
  1672. border-left: 2px solid #fdbb39;
  1673. }
  1674. .table-advance td.highlight div.danger {
  1675. border-left: 2px solid #e23e29;
  1676. }
  1677. /***
  1678. Star rating
  1679. ***/
  1680. .rating {
  1681. unicode-bidi: bidi-override;
  1682. direction: rtl;
  1683. font-size: 30px;
  1684. }
  1685. .rating span.star {
  1686. font-family: FontAwesome;
  1687. font-weight: normal;
  1688. font-style: normal;
  1689. display: inline-block;
  1690. }
  1691. .rating span.star:hover {
  1692. cursor: pointer;
  1693. }
  1694. .rating span.star:before {
  1695. content: "\f006";
  1696. padding-right: 5px;
  1697. color: #999999;
  1698. }
  1699. .rating span.star:hover:before,
  1700. .rating span.star:hover ~ span.star:before {
  1701. content: "\f005";
  1702. color: #e3cf7a;
  1703. }
  1704. /***
  1705. Rows seperated form layout
  1706. ***/
  1707. .form-row-seperated .control-group {
  1708. border-bottom: 1px solid #efefef;
  1709. padding-bottom: 10px;
  1710. padding-right: 10px;
  1711. margin-bottom: 10px;
  1712. margin-left: -10px;
  1713. margin-right: -10px;
  1714. }
  1715. .form-row-seperated .control-group.last {
  1716. border-bottom: 0;
  1717. }
  1718. .form-row-seperated .control-label {
  1719. width: 170px;
  1720. }
  1721. .form-row-seperated .controls {
  1722. margin-left: 190px;
  1723. }
  1724. .form-row-seperated .help-inline,
  1725. .form-row-seperated .help-block {
  1726. padding-left: 0;
  1727. }
  1728. /***
  1729. Bordered form layout
  1730. ***/
  1731. .form-horizontal.form-bordered .control-group:first-child {
  1732. border-bottom: 1px solid #eee !important;
  1733. }
  1734. .form-horizontal.form-bordered .control-group {
  1735. margin: 0;
  1736. padding: 0;
  1737. border-bottom: 1px solid #eee;
  1738. }
  1739. .form-horizontal.form-bordered .control-group.last {
  1740. border-bottom: 0;
  1741. }
  1742. .portlet.box .form-horizontal.form-bordered .control-group {
  1743. margin-left: -10px;
  1744. margin-right: -10px;
  1745. }
  1746. .portlet.box .form-horizontal.form-bordered .control-group:first-child {
  1747. margin-top: -10px;
  1748. }
  1749. .form-horizontal.form-bordered .control-group .controls {
  1750. padding: 10px;
  1751. position: relative;
  1752. border-left: 1px solid #eee;
  1753. }
  1754. .form-horizontal.form-bordered .control-group .controls .chosen-container,
  1755. .form-horizontal.form-bordered .control-group .controls .select2-wrapper {
  1756. min-height: 32px;
  1757. }
  1758. .form-horizontal.form-bordered .control-group .controls .chosen-container .help-block,
  1759. .form-horizontal.form-bordered .control-group .controls .select2-wrapper .help-block {
  1760. clear: both;
  1761. padding-top: 10px !important;
  1762. }
  1763. .form-horizontal.form-bordered .control-group .control-label {
  1764. margin-top: 10px;
  1765. }
  1766. .form-horizontal.form-bordered.form-row-stripped .control-group:nth-child(even) {
  1767. background-color: #fcfcfc;
  1768. }
  1769. .form-horizontal.form-bordered.form-label-stripped .control-group:nth-child(even) {
  1770. background-color: #fcfcfc;
  1771. }
  1772. .form-horizontal.form-bordered.form-row-stripped .m-wrap {
  1773. background: #fff !important;
  1774. }
  1775. .form-horizontal.form-bordered.form-label-stripped .control-group:nth-child(even) .controls {
  1776. background-color: #ffffff;
  1777. }
  1778. .form-horizontal.form-bordered .help-inline,
  1779. .form-horizontal.form-bordered .help-block {
  1780. padding-left: 0;
  1781. }
  1782. /***
  1783. Uniform plugin css changes
  1784. ***/
  1785. .radio, .checkbox {
  1786. padding-left: 0px !important;
  1787. }
  1788. .checkbox .checker {
  1789. margin-top: -2px !important;
  1790. margin-right: 2px !important;
  1791. }
  1792. .controls .text {
  1793. display: block;
  1794. margin-top: 7px;
  1795. font-weight: 400;
  1796. font-size: 14px;
  1797. }
  1798. .controls .text-inline {
  1799. display: inline-block;
  1800. margin-top: 8px;
  1801. font-weight: 400;
  1802. font-size: 14px;
  1803. }
  1804. /* used for non horizontal forms */
  1805. .controls-uniform {
  1806. margin-top: -7px;
  1807. }
  1808. /***
  1809. General forms settings
  1810. ***/
  1811. input.placeholder,
  1812. textarea.placeholder {
  1813. color: #aaa !important;
  1814. }
  1815. .help-block {
  1816. margin-top: 0px;
  1817. }
  1818. .form-inline input {
  1819. margin-bottom: 0px !important;
  1820. }
  1821. .control-label {
  1822. margin-top: 2px;
  1823. }
  1824. .control-label .required {
  1825. color: #e02222;
  1826. font-size: 12px;
  1827. padding-left: 2px;
  1828. }
  1829. .validate-inline {
  1830. display: inline-block;
  1831. *display: inline;
  1832. padding-left: 5px;
  1833. vertical-align: middle;
  1834. *zoom: 1;
  1835. margin-top: 6px;
  1836. }
  1837. .control-group.success .validate-inline {
  1838. color: #468847;
  1839. }
  1840. .control-group.info .validate-inline {
  1841. color: #3a87ad;
  1842. }
  1843. .control-group.error .validate-inline {
  1844. color: #b94a48;
  1845. }
  1846. .control-group.warning .validate-inline {
  1847. color: #c09853;
  1848. }
  1849. .help-inline {
  1850. margin-top: 6px;
  1851. }
  1852. .help-small {
  1853. font-size: 12px;
  1854. padding-top: 0;
  1855. margin-top: 0;
  1856. margin-bottom: 0;
  1857. padding-bottom: 0;
  1858. }
  1859. .success .validate-inline.ok:before,
  1860. .success .help-inline.ok:before {
  1861. content: "\f00c";
  1862. font-size: 16px;
  1863. font-family: FontAwesome;
  1864. font-weight: normal;
  1865. font-style: normal;
  1866. display: inline-block;
  1867. }
  1868. form legend,
  1869. .form-view legend {
  1870. margin-bottom: 15px !important;
  1871. }
  1872. .controls > .radio .checker,
  1873. .controls > .checkbox .checker {
  1874. margin-right: 2px !important;
  1875. }
  1876. .controls > .radio,
  1877. .controls > .checkbox {
  1878. display: inline-block;
  1879. padding: 0 !important;
  1880. margin: 0 !important;
  1881. margin-top: 8px !important;
  1882. margin-right: 15px !important;
  1883. }
  1884. .controls > .radio.line,
  1885. .controls > .checkbox.line {
  1886. display: block;
  1887. padding: 0 !important;
  1888. margin: 0 !important;
  1889. margin-top: 5px !important;
  1890. }
  1891. .controls .inline {
  1892. margin-top: 8px;
  1893. }
  1894. .form-view .control-group {
  1895. margin-top: 0px;
  1896. margin-bottom: 5px;
  1897. }
  1898. .uploader {
  1899. margin-top: 2px !important;
  1900. }
  1901. /***
  1902. Item block with details shown on hover
  1903. ***/
  1904. .item {
  1905. overflow: hidden;
  1906. display: block;
  1907. margin-bottom: 20px;
  1908. }
  1909. .item .details {
  1910. width: 100%;
  1911. display: none;
  1912. background-color: #000;
  1913. color: #fff !important;
  1914. padding: 5px;
  1915. text-align: center;
  1916. position: relative;
  1917. bottom:30px;
  1918. margin-bottom:-30px;
  1919. overflow: hidden;
  1920. z-index: 6;
  1921. }
  1922. .item:hover .details {
  1923. display: block;
  1924. opacity: 0.7;
  1925. filter: alpha(opacity = 70);
  1926. }
  1927. .item:hover .zoom-icon{
  1928. opacity:0.5;
  1929. filter: alpha(opacity = 50);
  1930. }
  1931. /***
  1932. Zoom icon overlay on images
  1933. ***/
  1934. .zoom {
  1935. cursor: pointer;
  1936. width: 100%;
  1937. height: 100%;
  1938. position: relative;
  1939. z-index: 5;
  1940. }
  1941. .zoom .zoom-icon {
  1942. background-image:url("../image/overlay-icon.png");
  1943. background-color: #222;
  1944. background-repeat: no-repeat;
  1945. background-position: 50%;
  1946. position: absolute;
  1947. width: inherit;
  1948. height: inherit;
  1949. opacity: 0;
  1950. filter: alpha(opacity = 0);
  1951. z-index: 6;
  1952. top:0;
  1953. }
  1954. /***
  1955. Chats
  1956. ***/
  1957. .chats {
  1958. margin:0;
  1959. padding: 0;
  1960. margin-top: -15px;
  1961. }
  1962. .chats li {
  1963. list-style: none;
  1964. padding: 5px 0;
  1965. margin: 10px auto;
  1966. font-size: 12px;
  1967. }
  1968. .chats li img.avatar {
  1969. height: 45px;
  1970. width: 45px;
  1971. -webkit-border-radius: 50% !important;
  1972. -moz-border-radius: 50% !important;
  1973. border-radius: 50% !important;
  1974. }
  1975. .chats li.in img.avatar {
  1976. float: left;
  1977. margin-right: 10px;
  1978. }
  1979. .chats li .name {
  1980. color:#3590c1;
  1981. font-size: 13px;
  1982. font-weight: 400;
  1983. }
  1984. .chats li .datetime {
  1985. color:#333;
  1986. font-size: 13px;
  1987. font-weight: 400;
  1988. }
  1989. .chats li.out img.avatar {
  1990. float: right;
  1991. margin-left: 10px;
  1992. }
  1993. .chats li .message {
  1994. display: block;
  1995. padding: 5px;
  1996. position: relative;
  1997. }
  1998. .chats li.in .message {
  1999. text-align: left;
  2000. border-left: 2px solid #35aa47;
  2001. margin-left: 65px;
  2002. background: #fafafa
  2003. }
  2004. .chats li.in .message .arrow {
  2005. display: block;
  2006. position: absolute;
  2007. top: 5px;
  2008. left: -8px;
  2009. width: 0;
  2010. height: 0;
  2011. border-top: 8px solid transparent;
  2012. border-bottom: 8px solid transparent;
  2013. border-right: 8px solid #35aa47;
  2014. }
  2015. .chats li.out .message .arrow {
  2016. display: block;
  2017. position: absolute;
  2018. top: 5px;
  2019. right: -8px;
  2020. border-top: 8px solid transparent;
  2021. border-bottom: 8px solid transparent;
  2022. border-left: 8px solid #da4a38;
  2023. }
  2024. .chats li.out .message {
  2025. border-right: 2px solid #da4a38;
  2026. margin-right: 65px;
  2027. background: #fafafa;
  2028. text-align: right;
  2029. }
  2030. .chats li.out .name,
  2031. .chats li.out .datetime {
  2032. text-align: right;
  2033. }
  2034. .chats li .message .body {
  2035. display: block;
  2036. }
  2037. .chat-form {
  2038. margin-top: 15px;
  2039. padding: 10px;
  2040. background-color: #e9eff3;
  2041. overflow: hidden;
  2042. clear: both;
  2043. }
  2044. .chat-form .input-cont {
  2045. margin-right: 55px;
  2046. }
  2047. .chat-form .input-cont .m-wrap {
  2048. margin-bottom: 0px;
  2049. }
  2050. .chat-form .input-cont input{
  2051. border: 1px solid #ddd;
  2052. width: 100%;
  2053. margin-top: 0;
  2054. }
  2055. .chat-form .input-cont input {
  2056. background-color: #fff !important;
  2057. }
  2058. .chat-form .input-cont input:focus{
  2059. border: 1px solid #4b8df9 !important;
  2060. }
  2061. .chat-form .btn-cont {
  2062. margin-top: -42px;
  2063. position: relative;
  2064. float: right;
  2065. width:44px;
  2066. }
  2067. .chat-form .btn-cont .arrow {
  2068. position: absolute;
  2069. top: 17px;
  2070. right: 43px;
  2071. border-top: 8px solid transparent;
  2072. border-bottom: 8px solid transparent;
  2073. border-right: 8px solid #4d90fe;
  2074. -webkit-box-sizing: border-box;
  2075. -moz-box-sizing: border-box;
  2076. box-sizing: border-box;
  2077. }
  2078. .chat-form .btn-cont:hover .arrow {
  2079. border-right-color: #0362fd;
  2080. }
  2081. .chat-form .btn-cont:hover .btn {
  2082. background-color: #0362fd;
  2083. }
  2084. .chat-form .btn-cont .btn {
  2085. margin-top: 8px;
  2086. }
  2087. /***
  2088. System feeds
  2089. ***/
  2090. .feeds {
  2091. margin: 0px;
  2092. padding: 0px;
  2093. list-style: none;
  2094. }
  2095. .feeds li {
  2096. background-color: #fafafa;
  2097. margin-bottom: 7px;
  2098. }
  2099. .feeds li:before,
  2100. .feeds li:after {
  2101. display: table;
  2102. line-height: 0;
  2103. content: "";
  2104. }
  2105. .feeds li:after {
  2106. clear: both;
  2107. }
  2108. .feeds .col1 {
  2109. float:left;
  2110. width:100%;
  2111. clear: both;
  2112. }
  2113. .feeds .col2 {
  2114. float:left;
  2115. width:75px;
  2116. margin-left:-75px;
  2117. }
  2118. .feeds .col1 .cont {
  2119. float:left;
  2120. margin-right:75px;
  2121. overflow:hidden;
  2122. }
  2123. .feeds .col1 .cont .cont-col1 {
  2124. float:left;
  2125. margin-right:-100%;
  2126. }
  2127. .feeds .col1 .cont .cont-col1 .label {
  2128. float: left;
  2129. width: 14px;
  2130. padding: 7px;
  2131. }
  2132. .feeds .col1 .cont .cont-col2 {
  2133. float:left;
  2134. width:100%;
  2135. }
  2136. .feeds .col1 .cont .cont-col2 .desc {
  2137. margin-left:35px;
  2138. padding-top: 4px;
  2139. padding-bottom: 4px;
  2140. overflow:hidden;
  2141. }
  2142. .feeds .col2 .date {
  2143. padding: 4px 9px 4px 4px;
  2144. text-align: right;
  2145. font-style: italic;
  2146. color:#c1cbd0;
  2147. }
  2148. /***
  2149. Users
  2150. ***/
  2151. .user-info {
  2152. margin-bottom: 10px !important;
  2153. }
  2154. .user-info img {
  2155. float: left;
  2156. margin-right: 5px;
  2157. }
  2158. .user-info .details {
  2159. display: inline-block;
  2160. }
  2161. .user-info .label {
  2162. font-weight: 300;
  2163. font-size: 11px;
  2164. }
  2165. /***
  2166. Accordions
  2167. ***/
  2168. .accordion-heading {
  2169. background:#eee;
  2170. }
  2171. .accordion-heading a {
  2172. text-decoration:none;
  2173. }
  2174. .accordion-heading a:hover {
  2175. text-decoration:none;
  2176. }
  2177. /***
  2178. Vertical inline menu
  2179. ***/
  2180. .ver-inline-menu {
  2181. margin: 0px;
  2182. list-style: none;
  2183. }
  2184. .ver-inline-menu li {
  2185. position:relative;
  2186. margin-bottom:1px;
  2187. }
  2188. .ver-inline-menu li i {
  2189. color:#b9cbd5;
  2190. font-size:15px;
  2191. padding:11px 9px;
  2192. margin:0 8px 0 0;
  2193. background:#e0eaf0 !important;
  2194. }
  2195. .ver-inline-menu li a {
  2196. font-size: 13px;
  2197. color:#557386;
  2198. display:block;
  2199. background:#f0f6fa;
  2200. border-left:solid 2px #c4d5df;
  2201. }
  2202. .ver-inline-menu li:hover a,
  2203. .ver-inline-menu li:hover i {
  2204. background:#e0eaf0;
  2205. text-decoration:none;
  2206. }
  2207. .ver-inline-menu li:hover i {
  2208. color:#fff;
  2209. background:#c4d5df !important;
  2210. }
  2211. .ver-inline-menu li.active a,
  2212. .ver-inline-menu li:hover a {
  2213. font-size: 13px;
  2214. }
  2215. .ver-inline-menu li.active a,
  2216. .ver-inline-menu li.active i {
  2217. color:#fff;
  2218. background:#169ef4;
  2219. text-decoration:none;
  2220. border-left:solid 1px #0c91e5;
  2221. }
  2222. .ver-inline-menu li.active i {
  2223. background:#0c91e5 !important;
  2224. }
  2225. .ver-inline-menu li.active:after {
  2226. content: '';
  2227. display: inline-block;
  2228. border-bottom: 6px solid transparent;
  2229. border-top: 6px solid transparent;
  2230. border-left: 6px solid #169ef4;
  2231. position: absolute;
  2232. top: 12px;
  2233. right: -5px;
  2234. }
  2235. /***
  2236. Custom tabs
  2237. ***/
  2238. .tab-content {
  2239. padding: 0px;
  2240. overflow: hidden;
  2241. }
  2242. .tabbable-custom {
  2243. -webkit-border-radius: 0;
  2244. -moz-border-radius: 0;
  2245. border-radius: 0;
  2246. margin-bottom: 15px;
  2247. }
  2248. .widget .row-fluid:last-child .tabbable-custom {
  2249. margin-bottom: 0px;
  2250. }
  2251. .tabbable-custom > .nav-tabs {
  2252. border: none;
  2253. margin: 0px;
  2254. }
  2255. .tabbable-custom > .tab-content {
  2256. background-color: #fff;
  2257. border: 1px solid #ddd;
  2258. -webkit-border-radius: 0;
  2259. -moz-border-radius: 0;
  2260. border-radius: 0;
  2261. padding: 10px;
  2262. }
  2263. .tabbable-custom.boxless > .tab-content {
  2264. padding:15px 0;
  2265. border-left:none;
  2266. border-right:none;
  2267. border-bottom:none;
  2268. }
  2269. .tabbable-custom .nav-tabs > li {
  2270. margin-right: 2px;
  2271. border-top: 2px solid transparent;
  2272. }
  2273. .tabbable-custom .nav-tabs > li > a {
  2274. -webkit-border-radius: 2px;
  2275. -moz-border-radius: 2px;
  2276. border-radius: 2px;
  2277. margin-right: 0;
  2278. padding: 5px 10px;
  2279. }
  2280. .tabbable-custom .nav-tabs > li > a:hover {
  2281. background: none;
  2282. border-color:transparent;
  2283. }
  2284. .tabbable-custom .nav-tabs > li.active {
  2285. border-top: 3px solid #d12610;
  2286. margin-top: 0;
  2287. position: relative;
  2288. }
  2289. .tabbable-custom .nav-tabs > li.active > a {
  2290. border-top: none;
  2291. font-weight: 400;
  2292. }
  2293. .tabbable-custom .nav-tabs > li.active > a:hover {
  2294. background: #fff;
  2295. border-color: #d4d4d4 #d4d4d4 transparent;
  2296. }
  2297. .tabbable-custom .nav-tabs > li {
  2298. margin-right: 2px;
  2299. border-top: 2px solid transparent;
  2300. }
  2301. .tabs-below.tabbable-custom .nav-tabs > li {
  2302. border-top: none;
  2303. border-bottom: 2px solid transparent;
  2304. margin-top: -1px;
  2305. }
  2306. .tabs-below.tabbable-custom .nav-tabs > li.active {
  2307. border-top: none;
  2308. border-bottom: 3px solid #d12610;
  2309. margin-bottom: 0; position: relative;
  2310. }
  2311. .tabs-below.tabbable-custom .nav-tabs > li.active > a {
  2312. border-bottom: none
  2313. }
  2314. .tabs-below.tabbable-custom .nav-tabs > li.active > a:hover {
  2315. background: #fff;
  2316. border-color: #d4d4d4 #d4d4d4 transparent;
  2317. }
  2318. .tabs-left.tabbable-custom .nav-tabs > li {
  2319. margin-right: 0; border-left: 2px solid transparent; margin-top: 0;
  2320. }
  2321. .tabs-left.tabbable-custom .nav-tabs > li.active {
  2322. border-top: none;
  2323. border-left: 3px solid #d12610;
  2324. margin-top: 0; margin-right: -1px; position: relative;
  2325. }
  2326. .tabs-left.tabbable-custom .nav-tabs > li.active > a {
  2327. border-top: 1px solid #d4d4d4;
  2328. border-left: 1px solid transparent;
  2329. }
  2330. .tabs-left.tabbable-custom .nav-tabs > li.active > a:hover {
  2331. background: #fff;
  2332. border-color: #d4d4d4 transparent #d4d4d4 transparent;
  2333. }
  2334. .tabs-right.tabbable-custom .nav-tabs > li {
  2335. margin-right: 0;
  2336. border-right: 2px solid transparent;
  2337. border-top: none; }
  2338. .tabs-right.tabbable-custom .nav-tabs > li.active {
  2339. border-top: none;
  2340. border-right: 3px solid #d12610;
  2341. margin-top: 0;
  2342. margin-left: -1px;
  2343. position: relative;
  2344. }
  2345. .tabs-right.tabbable-custom .nav-tabs > li.active > a {
  2346. border-top: 1px solid #d4d4d4;
  2347. border-right: 1px solid transparent;
  2348. }
  2349. .tabs-right.tabbable-custom .nav-tabs > li.active > a:hover {
  2350. background: #fff;
  2351. border-color: #d4d4d4 transparent #d4d4d4;
  2352. }
  2353. .tabs-right.tabbable-custom .nav-tabs > li a,
  2354. .tabs-left.tabbable-custom .nav-tabs > li a {
  2355. padding: 8px 10px
  2356. }
  2357. /*full width tabs with bigger titles */
  2358. .tabbable-custom.tabbable-full-width > .tab-content {
  2359. padding:27px 0;
  2360. border-left:none;
  2361. border-right:none;
  2362. border-bottom:none;
  2363. }
  2364. .tabbable-custom.tabbable-full-width .nav-tabs > li > a {
  2365. color:#424242;
  2366. font-size:15px;
  2367. padding:9px 15px;
  2368. }
  2369. /***
  2370. Custom portlet tabs
  2371. ***/
  2372. .portlet-tabs .nav-tabs {
  2373. position: relative;
  2374. top: -41px;
  2375. margin-right: 10px;
  2376. overflow: hidden;
  2377. }
  2378. .portlet-tabs .nav-tabs > li {
  2379. float: right;
  2380. }
  2381. .portlet-tabs .nav-tabs {
  2382. border-bottom: none;
  2383. }
  2384. .portlet-tabs .nav-tabs > li > a {
  2385. padding-top: 8px;
  2386. padding-bottom: 10px;
  2387. line-height: 16px;
  2388. margin-top: 6px;
  2389. margin-left: 0px;
  2390. margin-right: 0px;
  2391. border-left: 0;
  2392. border-right: 0;
  2393. -webkit-border-radius: 0px;
  2394. -moz-border-radius: 0px;
  2395. border-radius: 0px;
  2396. }
  2397. .portlet-tabs .nav-tabs > li:last-child > a {
  2398. border-right:0;
  2399. }
  2400. .portlet-tabs .nav-tabs > li {
  2401. margin-left: 1px;
  2402. }
  2403. .portlet-tabs .nav-tabs > li.active {
  2404. border-top-color: transparent;
  2405. }
  2406. .portlet-tabs .nav-tabs > li.active > a {
  2407. margin-bottom: 0px;
  2408. border-bottom: 0;
  2409. margin-left: 0px;
  2410. margin-right: 0px;
  2411. border-left: 0;
  2412. border-right: 0;
  2413. background-color: none !important;
  2414. border-top-color:transparent !important;
  2415. }
  2416. .portlet-tabs .nav-tabs > li > a:hover {
  2417. margin-bottom: 0;
  2418. border-bottom-color: transparent;
  2419. margin-left: 0;
  2420. margin-right: 0;
  2421. border-left: 0;
  2422. border-right: 0;
  2423. background-color: none !important;
  2424. border-top-color:transparent;
  2425. background-color: #fff;
  2426. }
  2427. .portlet-tabs .nav-tabs > .active > a {
  2428. color: #555555;
  2429. cursor: default;
  2430. background-color: #fff;
  2431. }
  2432. .portlet-tabs .nav-tabs > .active > a:hover {
  2433. background-color: #fff !important;
  2434. }
  2435. .portlet-tabs .tab-content {
  2436. padding: 10px !important;
  2437. margin: 0px;
  2438. margin-top: -60px !important;
  2439. }
  2440. .portlet.tabbable .portlet-body {
  2441. padding: 0px;
  2442. }
  2443. .tab-pane > p:last-child {
  2444. margin-bottom: 0px;
  2445. }
  2446. /***
  2447. Dashboard container
  2448. ***/
  2449. #dashboard {
  2450. overflow: hidden;
  2451. }
  2452. /***
  2453. Dashboard stats
  2454. ***/
  2455. .dashboard-stat {
  2456. margin-bottom: 25px;
  2457. }
  2458. .dashboard-stat:before,
  2459. .dashboard-stat:after {
  2460. display: table;
  2461. line-height: 0;
  2462. content: "";
  2463. }
  2464. .dashboard-stat:after {
  2465. clear: both;
  2466. }
  2467. .dashboard-stat .visual {
  2468. width: 80px;
  2469. height:80px;
  2470. display: block;
  2471. float: left;
  2472. padding-top: 10px;
  2473. padding-left: 15px;
  2474. }
  2475. .dashboard-stat .visual i {
  2476. font-size: 65px;
  2477. color: #fff;
  2478. }
  2479. .dashboard-stat .details {
  2480. float: right;
  2481. padding-right: 10px;
  2482. }
  2483. .dashboard-stat .details .number {
  2484. padding-top: 25px;
  2485. text-align: right;
  2486. font-size: 34px;
  2487. letter-spacing: -1px;
  2488. font-weight: 300;
  2489. color: #fff;
  2490. margin-bottom: 10px;
  2491. }
  2492. .dashboard-stat .details .desc {
  2493. text-align: right;
  2494. font-size: 16px;
  2495. letter-spacing: 0px;
  2496. font-weight: 300;
  2497. color: #fff;
  2498. }
  2499. .dashboard-stat .more {
  2500. clear: both;
  2501. display: block;
  2502. padding: 5px 10px 5px 10px;
  2503. text-transform: uppercase;
  2504. font-weight: 300;
  2505. font-size: 11px;
  2506. color: #fff;
  2507. opacity: 0.7;
  2508. filter: alpha(opacity=70);
  2509. }
  2510. .dashboard-stat .more i {
  2511. margin-top: 4px;
  2512. float: right;
  2513. }
  2514. .dashboard-stat .more:hover {
  2515. text-decoration: none;
  2516. -webkit-transition: all 0.1s ease-in-out;
  2517. -moz-transition: all 0.1s ease-in-out;
  2518. -o-transition: all 0.1s ease-in-out;
  2519. -ms-transition: all 0.1s ease-in-out;
  2520. transition: all 0.1s ease-in-out;
  2521. opacity: 1;
  2522. filter: alpha(opacity=100);
  2523. }
  2524. .dashboard-stat.blue {
  2525. background-color: #27a9e3;
  2526. }
  2527. .dashboard-stat.blue .more {
  2528. background-color: #208dbe;
  2529. }
  2530. .dashboard-stat.green {
  2531. background-color: #28b779;
  2532. }
  2533. .dashboard-stat.green .more {
  2534. background-color: #10a062;
  2535. }
  2536. .dashboard-stat.red {
  2537. background-color: #e7191b;
  2538. }
  2539. .dashboard-stat.red .more {
  2540. background-color:#bc0d0e;
  2541. }
  2542. .dashboard-stat.yellow {
  2543. background-color: #ffb848;
  2544. }
  2545. .dashboard-stat.yellow .more {
  2546. background-color: #cb871b;
  2547. }
  2548. .dashboard-stat.purple {
  2549. background-color: #852b99;
  2550. }
  2551. .dashboard-stat.purple .more {
  2552. background-color: #6e1881;
  2553. }
  2554. /***
  2555. Circle Stats(KNOB, new in v1.1.1)
  2556. ***/
  2557. /* Circle stats */
  2558. .knobify {
  2559. border: 0 !important;
  2560. width: 0px;
  2561. }
  2562. .ie8 .knobify {
  2563. display: none;
  2564. }
  2565. .circle-stat {
  2566. background-color: #f8f8f8;
  2567. padding:2px;
  2568. margin-bottom: 10px;
  2569. }
  2570. .circle-stat:hover {
  2571. background-color: #edf4f7;
  2572. }
  2573. .circle-stat:before,
  2574. .circle-stat:after {
  2575. display: table;
  2576. line-height: 0;
  2577. content: "";
  2578. }
  2579. .circle-stat:after {
  2580. clear: both;
  2581. }
  2582. .circle-stat .visual {
  2583. display: block;
  2584. float: left;
  2585. }
  2586. .circle-stat .details {
  2587. display: block;
  2588. float: left;
  2589. margin-left: 5px;
  2590. padding-top: 7px;
  2591. }
  2592. .circle-stat .details .title {
  2593. margin: 10px 0px 5px 0px !important;
  2594. padding: 0px !important;
  2595. font-size: 13px;
  2596. text-transform: uppercase;
  2597. font-weight: 300;
  2598. color: #222;
  2599. }
  2600. .ie8 .circle-stat .details .title {
  2601. margin-top:5px !important;
  2602. }
  2603. .ie8 .circle-stat .details {
  2604. padding-top: 0px !important;
  2605. margin-bottom: 5px !important;
  2606. }
  2607. .circle-stat .details .title i {
  2608. margin-top:2px !important;
  2609. color: #52e136;
  2610. font-size: 16px;
  2611. }
  2612. .circle-stat .details .title i.down {
  2613. color: #b63625;
  2614. }
  2615. .circle-stat .details .number {
  2616. margin: 0px !important;
  2617. margin-bottom: 7px !important;
  2618. font-size: 24px;
  2619. padding: 0px;
  2620. font-weight: 300;
  2621. color: #999;
  2622. }
  2623. /***
  2624. Tiles(new in v1.1.1)
  2625. ***/
  2626. .tiles {
  2627. margin-right: -10px;
  2628. }
  2629. .tile {
  2630. display: block;
  2631. letter-spacing: 0.02em;
  2632. float: left;
  2633. height: 130px;
  2634. width: 130px !important;
  2635. cursor: pointer;
  2636. text-decoration: none;
  2637. color: #ffffff;
  2638. position: relative;
  2639. font-weight: 300;
  2640. font-size: 12px;
  2641. letter-spacing: 0.02em;
  2642. line-height: 20px;
  2643. font-smooth: always;
  2644. overflow: hidden;
  2645. border: 4px solid transparent;
  2646. margin: 0 10px 10px 0;
  2647. }
  2648. .tile:after,
  2649. .tile:before {
  2650. content: "";
  2651. float: left;
  2652. }
  2653. .tile.double {
  2654. width: 278px !important;
  2655. }
  2656. .tile.double-down {
  2657. height: 278px !important;
  2658. }
  2659. .tile:active, .tile.selected {
  2660. border-color: #ccc;
  2661. }
  2662. .tile:hover {
  2663. border-color: #aaa;
  2664. }
  2665. .tile.selected .corner:after {
  2666. content: "";
  2667. display: inline-block;
  2668. border-left: 40px solid transparent;
  2669. border-bottom: 40px solid transparent;
  2670. border-right: 40px solid #ccc;
  2671. position: absolute;
  2672. top: -3px;
  2673. right: -3px;
  2674. }
  2675. .tile.selected .check:after {
  2676. content: "";
  2677. font-family: FontAwesome;
  2678. font-size: 13px;
  2679. content: "\f00c";
  2680. display: inline-block;
  2681. position: absolute;
  2682. top: 2px;
  2683. right: 2px;
  2684. }
  2685. .tile * {
  2686. color: #ffffff;
  2687. }
  2688. .tile .tile-body {
  2689. height: 100%;
  2690. vertical-align: top;
  2691. padding: 10px 10px;
  2692. overflow: hidden;
  2693. text-overflow: ellipsis;
  2694. position: relative;
  2695. font-weight: 400;
  2696. font-size: 12px;
  2697. font-smooth: always;
  2698. color: #000000;
  2699. color: #ffffff;
  2700. margin-bottom: 10px;
  2701. }
  2702. .tile .tile-body img {
  2703. float: left;
  2704. margin-right: 10px;
  2705. }
  2706. .tile .tile-body img.pull-right {
  2707. float: right !important;
  2708. margin-left: 10px;
  2709. margin-right: 0px;
  2710. }
  2711. .tile .tile-body .content {
  2712. display: inline-block;
  2713. }
  2714. .tile .tile-body > i {
  2715. margin-top: 17px;
  2716. display: block;
  2717. font-size: 56px;
  2718. text-align: center;
  2719. }
  2720. .tile.double-down i {
  2721. margin-top: 95px;
  2722. }
  2723. .tile .tile-body h1,
  2724. .tile .tile-body h2,
  2725. .tile .tile-body h3,
  2726. .tile .tile-body h4,
  2727. .tile .tile-body h5,
  2728. .tile .tile-body h6,
  2729. .tile .tile-body p {
  2730. padding: 0;
  2731. margin: 0;
  2732. line-height: 14px;
  2733. }
  2734. .tile .tile-body h3,
  2735. .tile .tile-body h4 {
  2736. margin-bottom: 5px;
  2737. }
  2738. .tile .tile-body h1:hover,
  2739. .tile .tile-body h2:hover,
  2740. .tile .tile-body h3:hover,
  2741. .tile .tile-body h4:hover,
  2742. .tile .tile-body h5:hover,
  2743. .tile .tile-body h6:hover,
  2744. .tile .tile-body p:hover {
  2745. color: #ffffff;
  2746. }
  2747. .tile .tile-body p {
  2748. font-weight: 400;
  2749. font-size: 13px;
  2750. font-smooth: always;
  2751. color: #000000;
  2752. color: #ffffff;
  2753. line-height: 20px;
  2754. overflow: hidden;
  2755. text-overflow: ellipsis;
  2756. }
  2757. .tile .tile-body p:hover {
  2758. color: rgba(0, 0, 0, 0.8);
  2759. }
  2760. .tile .tile-body p:active {
  2761. color: rgba(0, 0, 0, 0.4);
  2762. }
  2763. .tile .tile-body p:hover {
  2764. color: #ffffff;
  2765. }
  2766. .tile.icon > .tile-body {
  2767. padding: 0;
  2768. }
  2769. .tile .tile-object {
  2770. position: absolute;
  2771. bottom: 0;
  2772. left: 0;
  2773. right: 0;
  2774. min-height: 30px;
  2775. background-color: transparent;
  2776. *zoom: 1;
  2777. }
  2778. .tile .tile-object:before,
  2779. .tile .tile-object:after {
  2780. display: table;
  2781. content: "";
  2782. }
  2783. .tile .tile-object:after {
  2784. clear: both;
  2785. }
  2786. .tile .tile-object > .name {
  2787. position: absolute;
  2788. bottom: 0;
  2789. left: 0;
  2790. margin-bottom: 5px;
  2791. margin-left: 10px;
  2792. margin-right: 15px;
  2793. font-weight: 400;
  2794. font-size: 13px;
  2795. font-smooth: always;
  2796. color: #ffffff;
  2797. }
  2798. .tile .tile-object > .name i {
  2799. display: block;
  2800. font-size: 24px;
  2801. }
  2802. .tile .tile-object > .number {
  2803. position: absolute;
  2804. bottom: 0;
  2805. right: 0;
  2806. margin-bottom: 0;
  2807. color: #ffffff;
  2808. text-align: center;
  2809. font-weight: 600;
  2810. font-size: 14px;
  2811. letter-spacing: 0.01em;
  2812. line-height: 14px;
  2813. font-smooth: always;
  2814. margin-bottom: 8px;
  2815. margin-right: 10px;
  2816. }
  2817. .tile.image {
  2818. border-color1: transparent !important;
  2819. }
  2820. .tile.image > .tile-body {
  2821. padding: 0 !important;
  2822. }
  2823. .tile.image > .tile-body > img{
  2824. width: 100%;
  2825. height: auto;
  2826. min-height: 100%;
  2827. max-width: 100%;
  2828. }
  2829. .tile.image .tile-body h3 {
  2830. display: inline-block;
  2831. }
  2832. /***
  2833. Styler Panel
  2834. ***/
  2835. .color-panel {
  2836. z-index: 999;
  2837. position:relative;
  2838. }
  2839. .color-panel .color-mode-icons {
  2840. top:4px;
  2841. right:0;
  2842. padding:20px;
  2843. cursor:pointer;
  2844. position:absolute;
  2845. }
  2846. .color-panel .icon-color {
  2847. background:#c9c9c9 url(../image/icon-color.png) center no-repeat !important;
  2848. }
  2849. .color-panel .icon-color:hover {
  2850. background-color:#3d3d3d !important;
  2851. }
  2852. .color-panel .icon-color-close {
  2853. display:none;
  2854. background:#3d3d3d url(../image/icon-color-close.png) center no-repeat !important;
  2855. }
  2856. .color-panel .icon-color-close:hover {
  2857. background-color:#222 !important;
  2858. }
  2859. .color-mode {
  2860. top:4px;
  2861. right:40px;
  2862. display:none;
  2863. padding:10px 0;
  2864. position:absolute;
  2865. background:#3d3d3d;
  2866. }
  2867. .color-mode p,
  2868. .color-mode ul,
  2869. .color-mode label {
  2870. padding:0 15px;
  2871. }
  2872. .color-mode p {
  2873. color:#cfcfcf;
  2874. padding:0 15px;
  2875. font-size:15px;
  2876. }
  2877. .color-mode ul {
  2878. list-style:none;
  2879. padding:4px 11px 5px;
  2880. display: block;
  2881. margin-bottom: 1px !important;
  2882. }
  2883. .color-mode li {
  2884. width:16px;
  2885. height:23px;
  2886. margin:0 4px;
  2887. cursor:pointer;
  2888. list-style:none;
  2889. border:solid 1px #707070;
  2890. }
  2891. .color-mode li:hover,
  2892. .color-mode li.current {
  2893. border:solid 2px #ebebeb;
  2894. margin:0 3px;
  2895. }
  2896. .color-mode li.color-black {
  2897. background:#333438;
  2898. }
  2899. .color-mode li.color-grey {
  2900. background:#6d6d6d;
  2901. }
  2902. .color-mode li.color-blue {
  2903. background:#124f94;
  2904. }
  2905. .color-mode li.color-brown {
  2906. background:#623f18;
  2907. }
  2908. .color-mode li.color-purple {
  2909. background:#701584;
  2910. }
  2911. .color-mode li.color-white {
  2912. background:#fff;
  2913. }
  2914. .color-mode label {
  2915. color:#cfcfcf;
  2916. padding-top:10px;
  2917. padding-bottom: 0px;
  2918. border-top:1px solid #585858;
  2919. margin-top: 0px;
  2920. margin-bottom: 0px;
  2921. }
  2922. .color-mode label span {
  2923. text-transform:uppercase;
  2924. }
  2925. .color-mode label > span {
  2926. display: inline-block;
  2927. width: 85px;
  2928. }
  2929. .color-mode label > select {
  2930. margin-top: 5px;
  2931. text-transform: lowercase;
  2932. }
  2933. .color-mode label span.color-mode-label {
  2934. top:2px;
  2935. position:relative;
  2936. }
  2937. /***
  2938. Calendar with full calendar
  2939. ***/
  2940. .external-event {
  2941. display: inline-block !important;
  2942. cursor:move;
  2943. margin-bottom: 5px !important;
  2944. margin-left: 5px !important;
  2945. }
  2946. .portlet .event-form-title {
  2947. font-size: 14px;
  2948. margin-top: -8px;
  2949. font-weight: 400;
  2950. margin-bottom: 0px;
  2951. }
  2952. .portlet.calendar .fc-button {
  2953. -webkit-box-shadow: none !important;
  2954. -moz-box-shadow: none !important;
  2955. box-shadow: none !important;
  2956. -webkit-text-shadow: none !important;
  2957. -moz-text-shadow: none !important;
  2958. text-shadow: none !important;
  2959. border: 0 !important;
  2960. padding: 7px 8px 11px 8px;
  2961. margin-left:2px;
  2962. color: #fff !important;
  2963. border-top-style: none;
  2964. border-bottom-style: none;
  2965. border-right-style: solid;
  2966. border-left-style: solid;
  2967. border-color: #ddd;
  2968. background: transparent;
  2969. color: #646464;
  2970. top: -47px;
  2971. }
  2972. .portlet.calendar .fc-header {
  2973. margin-bottom:-21px;
  2974. }
  2975. .portlet.calendar .fc-button-prev {
  2976. padding-right: 10px;
  2977. padding-left: 8px;
  2978. }
  2979. .portlet.calendar .fc-button-next {
  2980. padding-right: 8px;
  2981. padding-left: 10px;
  2982. }
  2983. .portlet.calendar .fc-button.fc-state-active,
  2984. .portlet.calendar .fc-button.fc-state-hover {
  2985. color: #666 !important;
  2986. background-color: #F9F9F9 !important;
  2987. }
  2988. .portlet.calendar .fc-button.fc-state-disabled {
  2989. color: #ddd !important;
  2990. }
  2991. .portlet.calendar .fc-text-arrow {
  2992. font-size: 22px;
  2993. font-family: "Courier New", Courier, monospace;
  2994. vertical-align: baseline;
  2995. }
  2996. /* begin: event element */
  2997. .portlet.calendar .fc-event {
  2998. border: 0px;
  2999. background-color: #69a4e0;
  3000. color: #fff;
  3001. }
  3002. .portlet.calendar .fc-event-inner {
  3003. border: 0px;
  3004. }
  3005. .portlet.calendar .fc-event-time {
  3006. float: left;
  3007. text-align: left;
  3008. color: #fff;
  3009. font-size: 13px;
  3010. font-weight: 300;
  3011. }
  3012. .portlet.calendar .fc-event-title {
  3013. text-align: left;
  3014. float: left;
  3015. color: #fff;
  3016. font-size: 13px;
  3017. font-weight: 300;
  3018. }
  3019. /* end: event element */
  3020. .portlet.calendar .fc-header-title h2 {
  3021. font-size: 14px !important;
  3022. line-height: 20px;
  3023. font-weight: 400;
  3024. color: #111;
  3025. }
  3026. .portlet.calendar .fc-widget-header {
  3027. background-image: none !important;
  3028. filter:none !important;
  3029. background-color: #eee !important;
  3030. text-transform: uppercase;
  3031. font-color:#000;
  3032. font-weight: 300;
  3033. }
  3034. .portlet.calendar .mobile .fc-button {
  3035. margin-left: 2px !important;
  3036. }
  3037. .portlet.calendar .mobile .fc-button {
  3038. padding: 6px 6px 6px 6px;
  3039. margin-left:2px;
  3040. border: none !important;
  3041. background-color: #ddd !important;
  3042. background-image: none;
  3043. -webkit-box-shadow: none !important;
  3044. -moz-box-shadow: none !important;
  3045. box-shadow: none !important;
  3046. -webkit-border-radius: 0 !important;
  3047. -moz-border-radius: 0 !important;
  3048. border-radius: 0 !important;
  3049. color: #000 !important;
  3050. border: none !important;
  3051. text-shadow: none !important;
  3052. text-align: center;
  3053. }
  3054. .portlet.calendar .mobile .fc-state-hover,
  3055. .portlet.calendar .mobile .fc-state-active {
  3056. background-color: #eee !important;
  3057. }
  3058. .portlet.calendar .mobile .fc-button-prev {
  3059. margin-right: 5px;
  3060. margin-top: -2px;
  3061. padding: 3px 6px 3px 4px;
  3062. }
  3063. .portlet.calendar .mobile .fc-button-next {
  3064. margin-right: -0px;
  3065. margin-top: -2px;
  3066. padding: 3px 4px 3px 6px;
  3067. }
  3068. .portlet.calendar .mobile .fc-header-space {
  3069. margin: 0px !important;
  3070. padding: 0px !important;
  3071. width: 0px !important;
  3072. }
  3073. .portlet.calendar .mobile .fc-state-disabled {
  3074. color: #bbb !important;
  3075. }
  3076. .portlet.calendar .mobile .fc-header-left {
  3077. position: absolute;
  3078. z-index: 10;
  3079. }
  3080. .portlet.calendar .mobile .fc-header-right {
  3081. position: absolute;
  3082. z-index: 9;
  3083. }
  3084. .portlet.calendar .mobile .fc-header-left .fc-button {
  3085. top: -2px !important;
  3086. }
  3087. .portlet.calendar .mobile .fc-header-right {
  3088. position: relative;
  3089. right:0;
  3090. }
  3091. .portlet.calendar .mobile .fc-header-right .fc-button {
  3092. top: 35px !important;
  3093. }
  3094. .portlet.calendar .mobile .fc-header-right .fc-button:last-child {
  3095. margin-left: 0px !important;
  3096. }
  3097. .portlet.calendar .mobile .fc-content {
  3098. margin-top: 53px;
  3099. }
  3100. /***
  3101. Form wizard
  3102. ***/
  3103. .form-wizard .progress {
  3104. margin-bottom: 30px;
  3105. }
  3106. .form-wizard .steps {
  3107. padding: 10px 0;
  3108. margin-bottom: 15px;
  3109. }
  3110. .form-wizard .steps .navbar-inner {
  3111. background-color: #fff !important;
  3112. background-image: none !important;
  3113. filter:none !important;
  3114. border: 0px;
  3115. box-shadow: none !important;
  3116. }
  3117. .form-wizard .steps .navbar-inner li a {
  3118. background-color: #fff !important;
  3119. background-image: none !important;
  3120. filter:none !important;
  3121. border: 0px;
  3122. box-shadow: none !important;
  3123. }
  3124. .form-wizard .step:hover {
  3125. text-decoration: none;
  3126. }
  3127. .form-wizard .step .number {
  3128. background-color: #eee;
  3129. display: inline-block;
  3130. font-size: 16px;
  3131. font-weight: 300;
  3132. padding: 12px 15px 12px 15px !important;
  3133. margin-right: 10px;
  3134. -webkit-border-radius: 50% !important;
  3135. -moz-border-radius: 50% !important;
  3136. border-radius: 50% !important;
  3137. }
  3138. .form-wizard .step .desc {
  3139. display: inline-block;
  3140. font-size: 14px;
  3141. font-weight: 300;
  3142. }
  3143. .form-wizard .active .step .number {
  3144. background-color: #35aa47;
  3145. color: #fff;
  3146. }
  3147. .form-wizard .active .step .desc {
  3148. font-weight: 400;
  3149. }
  3150. .form-wizard .step i {
  3151. display: none;
  3152. }
  3153. .form-wizard .done .step .number {
  3154. background-color: #f2ae43;
  3155. color: #fff;
  3156. }
  3157. .form-wizard .done .step .desc {
  3158. font-weight: 400;
  3159. }
  3160. .form-wizard .done .step i {
  3161. font-size: 12px;
  3162. font-weight: normal;
  3163. color: #999;
  3164. display: inline-block;
  3165. }
  3166. /* bootstrap chosen overlaping bug fix*/
  3167. .form-wizard .tab-pane .chzn-container {
  3168. position: absolute !important;
  3169. }
  3170. /**************************
  3171. PLUGIN CSS CUSTOMIZATIONS
  3172. **************************/
  3173. /***
  3174. Google Maps
  3175. ***/
  3176. .gmaps {
  3177. height: 300px;
  3178. width: 100%;
  3179. }
  3180. /* important! bootstrap sets max-width on img to 100% which conflicts with google map canvas*/
  3181. .gmaps img {
  3182. max-width: none;
  3183. }
  3184. #gmap_static div{
  3185. background-repeat: no-repeat !important;
  3186. background-position: 50% 50% !important;
  3187. height:100%;
  3188. display:block;
  3189. height: 300px;
  3190. }
  3191. #gmap_routes_instructions {
  3192. margin-top: 10px;
  3193. margin-bottom: 0px;
  3194. }
  3195. /***
  3196. SlimScrollBar plugins css changes
  3197. ***/
  3198. .scroller {
  3199. padding: 0px !important;
  3200. margin: 0px !important;
  3201. padding-right: 12px !important;
  3202. }
  3203. .portlet-body .slimScrollBar {
  3204. margin-right: 0px !important;
  3205. }
  3206. /***
  3207. jqvmap changes
  3208. ***/
  3209. .jqvmap-zoomin {
  3210. background-color: #666 !important;
  3211. }
  3212. .jqvmap-zoomout {
  3213. background-color: #666 !important;
  3214. }
  3215. .vmaps {
  3216. position: relative;
  3217. overflow: hidden;
  3218. height: 300px;
  3219. }
  3220. /***
  3221. Daterangepicker plugin css changes
  3222. ***/
  3223. .modal-open .daterangepicker {
  3224. z-index: 10060 !important;
  3225. }
  3226. .daterangepicker td {
  3227. text-shadow: none !important;
  3228. }
  3229. .daterangepicker td.active {
  3230. background-color: #4b8df8 !important;
  3231. background-image: none !important;
  3232. filter:none !important;
  3233. }
  3234. .daterangepicker th {
  3235. font-weight: 400;
  3236. font-size: 14px;
  3237. }
  3238. /***
  3239. Toggle buttons plugin css changes
  3240. ***/
  3241. .toggle-button,
  3242. .toggle-button label {
  3243. margin-top: 3px;
  3244. background-image: none !important;
  3245. filter:none !important;
  3246. -webkit-border-radius: 0px !important;
  3247. -moz-border-radius: 0px !important;
  3248. -ms-border-radius: 0px !important;
  3249. -o-border-radius: 0px !important;
  3250. border: 1px solid #eee !important;
  3251. -moz-border-radius-topleft: 0px !important;
  3252. -webkit-border-top-left-radius: 0px !important;
  3253. border-top-left-radius: 0px !important;
  3254. -moz-border-radius-bottomleft: 0px !important;
  3255. -webkit-border-bottom-left-radius: 0px !important;
  3256. border-bottom-left-radius: 0px !important;
  3257. -moz-border-radius-topright: 0px !important;
  3258. -webkit-border-top-right-radius: 0px !important;
  3259. border-top-right-radius: 0px !important;
  3260. -moz-border-radius-bottomright: 0px !important;
  3261. -webkit-border-bottom-right-radius: 0px !important;
  3262. border-bottom-right-radius: 0px !important;
  3263. }
  3264. .toggle-button span.labelRight,
  3265. .toggle-button span.primary,
  3266. .toggle-button span.labelLeft,
  3267. .toggle-button span.info,
  3268. .toggle-button span.success,
  3269. .toggle-button span.warning,
  3270. .toggle-button span.danger {
  3271. -moz-border-radius-topleft: 0px !important;
  3272. -webkit-border-top-left-radius: 0px !important;
  3273. border-top-left-radius: 0px !important;
  3274. -moz-border-radius-bottomleft: 0px !important;
  3275. -webkit-border-bottom-left-radius: 0px !important;
  3276. border-bottom-left-radius: 0px !important;
  3277. -moz-border-radius-topright: 0px !important;
  3278. -webkit-border-top-right-radius: 0px !important;
  3279. border-top-right-radius: 0px !important;
  3280. -moz-border-radius-bottomright: 0px !important;
  3281. -webkit-border-bottom-right-radius: 0px !important;
  3282. border-bottom-right-radius: 0px !important;
  3283. font-size: 13px !important;
  3284. font-weight: 300 !important;
  3285. background-image: none !important;
  3286. filter:none !important;
  3287. }
  3288. .toggle-button span.labelRight {
  3289. background-color: #eee;
  3290. }
  3291. /***
  3292. Choosen plugin css changes
  3293. ***/
  3294. .chzn-controls {
  3295. margin-bottom: -4px !important;
  3296. }
  3297. .chzn-controls .help-inline {
  3298. display: inline-block;
  3299. margin-top : 6px;
  3300. }
  3301. .chzn-container {
  3302. display: block;
  3303. margin: 0;
  3304. padding: 0 !important;
  3305. box-shadow: none !important;
  3306. }
  3307. .chzn-container-single {
  3308. margin: 0 !important;
  3309. padding: 0 !important;
  3310. }
  3311. /* fix chosen margins in form layouts */
  3312. .controls .chzn-container-single {
  3313. float: left;
  3314. }
  3315. .chzn-container-single .chzn-single {
  3316. box-shadow: none !important;
  3317. background-image: none !important;
  3318. filter:none !important;
  3319. box-shadow: none !important;
  3320. -webkit-box-shadow: none !important;
  3321. -moz-box-shadow: none !important;
  3322. height: 31px !important;
  3323. border-color: #e5e5e5;
  3324. margin: 0 !important;
  3325. }
  3326. /* enable form validation classes for chosen dropdowns */
  3327. .error .chzn-container-single .chzn-single {
  3328. border-color: #B94A48;
  3329. }
  3330. .error .chzn-container-single .chzn-single span {
  3331. color: #B94A48;
  3332. }
  3333. .success .chzn-container-single .chzn-single {
  3334. border-color: #468847;
  3335. }
  3336. .success .chzn-container-single .chzn-single span {
  3337. color: #468847;
  3338. }
  3339. .chzn-container-single .chzn-single > span {
  3340. margin-top: 1px;
  3341. }
  3342. .chzn-container-single .chzn-single > abr {
  3343. margin-top: 3px;
  3344. }
  3345. .chzn-container-single .chzn-search input:focus,
  3346. .chzn-container-single .chzn-search input:active {
  3347. border:1px solid #000 !important;
  3348. box-shadow: none !important;
  3349. }
  3350. .chzn-container .chzn-choices li.search-choice {
  3351. background-image: none !important;
  3352. filter:none !important;
  3353. box-shadow: none !important;
  3354. font-size: 12px !important;
  3355. font-weight: 300 !important;
  3356. text-shadow:none !important;
  3357. background-color: #eee !important;
  3358. border: 0 !important;
  3359. }
  3360. .chzn-container .chzn-results .highlighted {
  3361. background-image: none !important;
  3362. filter:none !important;
  3363. background-color: #eee !important;
  3364. color: #111 !important;
  3365. }
  3366. .chzn-container-multi .chzn-choices {
  3367. background-image: none !important;
  3368. filter:none !important;
  3369. box-shadow: none !important;
  3370. border-color: #e5e5e5 !important;
  3371. padding: 2px 1px 1px 1px !important;
  3372. }
  3373. .chzn-container-multi .chzn-choices .search-choice.search-choice-disabled {
  3374. background-image: none !important;
  3375. filter:none !important;
  3376. }
  3377. .chzn-x-multi .chzn-choices {
  3378. box-shadow: none !important;
  3379. }
  3380. .chzn-container .group-result {
  3381. color: #333 !important;
  3382. font-size: 16px !important;
  3383. font-weight: 400 !important;
  3384. }
  3385. /***
  3386. Select2 plugin css changes
  3387. ***/
  3388. /* enable form validation classes for select2 dropdowns */
  3389. .error .select2-container .select2-choice {
  3390. border-color: #B94A48;
  3391. }
  3392. .error .select2-container .select2-choice > span {
  3393. color: #B94A48;
  3394. }
  3395. .error .select2-container.select2-dropdown-open .select2-choice {
  3396. border-color: #e5e5e5;
  3397. }
  3398. .error .select2-container.select2-dropdown-open .select2-choice > span {
  3399. color: #999999;
  3400. }
  3401. .success .select2-container .select2-choice {
  3402. border-color: #468847;
  3403. }
  3404. .success .select2-container .select2-choice > span {
  3405. color: #468847;
  3406. }
  3407. .success .select2-container.select2-dropdown-open .select2-choice {
  3408. border-color: #e5e5e5;
  3409. }
  3410. .success .select2-container.select2-dropdown-open .select2-choice > span {
  3411. color: #999999;
  3412. }
  3413. /***
  3414. Fileuploader plugin css changes
  3415. ***/
  3416. .fileupload .btn {
  3417. padding: 7px 14px !important;
  3418. }
  3419. .fileupload-exists {
  3420. padding: 0px;
  3421. }
  3422. .fileupload .fileupload-preview {
  3423. background-color: #fff !important;
  3424. background-image: none !important;
  3425. filter:none !important;
  3426. }
  3427. .fileupload .close {
  3428. position: relative;
  3429. top:0px !important;
  3430. }
  3431. /***
  3432. Clockface plugin css changes
  3433. ***/
  3434. .clockface .cell .inner.active,
  3435. .clockface .cell .outer.active {
  3436. background-image: none !important;
  3437. filter:none !important;
  3438. }
  3439. /***
  3440. WYSIWYG
  3441. ***/
  3442. .wysihtml5-toolbar li {
  3443. margin: 0px;
  3444. height: 29px;
  3445. }
  3446. .wysihtml5-toolbar li .dropdown-menu {
  3447. margin-top: 5px;
  3448. }
  3449. /***
  3450. CKEditor css changes
  3451. ***/
  3452. .cke_bottom,
  3453. .cke_inner,
  3454. .cke_top,
  3455. .cke_reset,
  3456. .cke_dialog_title,
  3457. .cke_dialog_footer,
  3458. .cke_dialog {
  3459. background-image: none !important;
  3460. filter:none !important;
  3461. border-top: 0 !important;
  3462. border-bottom: 0 !important;
  3463. -webkit-box-shadow: none !important;
  3464. -moz-box-shadow: none !important;
  3465. box-shadow: none !important;
  3466. text-shadow:none !important;
  3467. }
  3468. .cke_dialog_ui_button,
  3469. .cke_dialog_tab {
  3470. background-image: none !important;
  3471. filter:none !important;
  3472. -webkit-box-shadow: none !important;
  3473. -moz-box-shadow: none !important;
  3474. box-shadow: none !important;
  3475. text-shadow:none !important;
  3476. }
  3477. .cke_dialog_ui_button:hover,
  3478. .cke_dialog_tab:hover {
  3479. text-decoration: none;
  3480. text-shadow:none !important;
  3481. }
  3482. .cke_dialog_ui_input_text {
  3483. background-image: none !important;
  3484. filter:none !important;
  3485. -webkit-box-shadow: none !important;
  3486. -moz-box-shadow: none !important;
  3487. box-shadow: none !important;
  3488. }
  3489. .cke_combo_button,
  3490. .cke_button,
  3491. .cke_toolbar,
  3492. .cke_toolgroup {
  3493. background-image: none !important;
  3494. filter:none !important;
  3495. border: 0 !important;
  3496. -webkit-box-shadow: none !important;
  3497. -moz-box-shadow: none !important;
  3498. box-shadow: none !important;
  3499. }
  3500. .cke_button,
  3501. .cke_combo_button,
  3502. .cke_panel_grouptitle,
  3503. .cke_hc.cke_panel_listItem a {
  3504. background-image: none !important;
  3505. filter:none !important;
  3506. text-shadow:none !important;
  3507. -webkit-border-radius: 0px !important;
  3508. -moz-border-radius: 0px !important;
  3509. -ms-border-radius: 0px !important;
  3510. -o-border-radius: 0px !important;
  3511. }
  3512. .cke_button:hover,
  3513. .cke_combo_button:hover {
  3514. background-color: #ddd;
  3515. }
  3516. .cke_toolbar_break {
  3517. background-image: none !important;
  3518. filter:none !important;
  3519. border: 0 !important;
  3520. box-shadow: none !important;
  3521. -webkit-box-shadow : none !important;
  3522. -moz-box-shadow: none !important;
  3523. -ms-box-shadow: none !important;
  3524. -o-box-shadow: none !important;
  3525. }
  3526. /***
  3527. Modify tags input plugin css
  3528. ***/
  3529. div.tagsinput {
  3530. height: 40px !important;
  3531. margin: 0 !important;
  3532. padding: 5px !important;
  3533. overflow: auto !important;
  3534. }
  3535. div.tagsinput span.tag {
  3536. background: #aaa !important;
  3537. color: #fff !important;
  3538. border: 0 !important;
  3539. padding: 3px 6px !important;
  3540. -webkit-border-radius: 0 !important;
  3541. -moz-border-radius: 0 !important;
  3542. border-radius: 0 !important;
  3543. margin-bottom: 4px !important;
  3544. }
  3545. div.tagsinput input {
  3546. padding: 3px 6px !important;
  3547. }
  3548. div.tagsinput span.tag a {
  3549. color: #fff !important;
  3550. }
  3551. div.tagsinput .not_valid {
  3552. color: #fff !important;
  3553. padding: 3px 6px !important;
  3554. background-color: #e02222 !important;
  3555. }
  3556. /***
  3557. Gritter notification modify
  3558. ***/
  3559. .gritter-close {
  3560. left:auto !important;
  3561. right: 3px !important;
  3562. }
  3563. .gritter-title {
  3564. font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial !important;
  3565. font-size: 18px !important;
  3566. font-weight: 300 !important;
  3567. }
  3568. /***
  3569. Bootstrap carousel css changes
  3570. ***/
  3571. .carousel-inner .item {
  3572. line-height: 20px;
  3573. }
  3574. /***
  3575. Glyphicons Demo(new in v1.1.1)
  3576. ***/
  3577. .glyphicons-demo {
  3578. text-align: center;
  3579. }
  3580. .glyphicons-demo .glyphicons {
  3581. display:inline-block;
  3582. *display:inline;
  3583. *zoom:1;
  3584. width:150px;
  3585. font-size:14px;
  3586. line-height:48px;
  3587. margin-right: 20px;
  3588. color: #999;
  3589. text-align: left;
  3590. }
  3591. .glyphicons-demo .glyphicons i:before{
  3592. line-height:55px!important;
  3593. color: #666;
  3594. }
  3595. .halfings-demo .white-content{
  3596. margin:0 -20px 0 -20px;
  3597. padding:20px;
  3598. background:#000;
  3599. background:rgba(0,0,0,0.9)
  3600. }
  3601. .halfings-demo .white-content *,
  3602. .halfings-demo .white-content p,
  3603. .halfings-demo .white-content a{
  3604. color:#fff
  3605. }
  3606. .halfings-demo h2 {
  3607. text-align: left;
  3608. }
  3609. .halfings-demo p,
  3610. .halfings-demo a {
  3611. width: 175px;
  3612. font-size: 14px;
  3613. line-height: 14px;
  3614. text-align: left;
  3615. display: inline-block;
  3616. margin-right: 10px;
  3617. }
  3618. .halfings-demo .halflings,
  3619. .halfings-demo .halflings-icon {
  3620. margin:0 5px 0 0
  3621. }
  3622. /***
  3623. jQuery UI Sliders(new in v1.1.1)
  3624. ***/
  3625. .table.sliders td {
  3626. padding: 15px 10px !important;
  3627. }
  3628. .table.sliders .slider {
  3629. margin-top: 4px;
  3630. }
  3631. .table.sliders .slider-value {
  3632. padding-top: 5px;
  3633. font-weight: 400;
  3634. }
  3635. .table.sliders .slider-vertical-value {
  3636. padding-bottom: 5px;
  3637. font-weight: 400;
  3638. }
  3639. .slider {
  3640. border: 0 !important;
  3641. }
  3642. .ui-slider-vertical,
  3643. .ui-slider-handle {
  3644. filter: none !important;
  3645. background-image: none !important;
  3646. }
  3647. .slider-eq > span {
  3648. height:125px;
  3649. float:left;
  3650. margin:15px
  3651. }
  3652. /***
  3653. Dropzone css changes(new in v1.1.1)
  3654. ***/
  3655. .dropzone {
  3656. webkit-border-radius: 0px !important;
  3657. -moz-border-radius: 0px !important;
  3658. border-radius: 0px !important;
  3659. }
  3660. /***
  3661. Bootstrap Tree CSS changes(new in v1.1.2)
  3662. ***/
  3663. .tree {
  3664. margin: 0;
  3665. padding: 0;
  3666. }
  3667. .tree a {
  3668. padding: 2px 3px 3px 3px;
  3669. display: block !important;
  3670. line-height: 16px !important;
  3671. }
  3672. .tree a:hover {
  3673. text-decoration: none;
  3674. background-color: #eee;
  3675. }
  3676. .tree a.tree-toggle-icon-only,
  3677. .tree a.tree-toggle {
  3678. background-position: 2px -20px;
  3679. }
  3680. .tree a.tree-toggle.closed,
  3681. .tree a.tree-toggle-icon-only.closed {
  3682. background-position: 2px 3px;
  3683. }
  3684. /***
  3685. jQuery UI Datepicker(new in v1.2.2)
  3686. ***/
  3687. .ui-widget-header select {
  3688. padding: 2px !important;
  3689. height: 30px;
  3690. margin: 0 !important;
  3691. margin-top: -1px !important;
  3692. }
  3693. .ui-datepicker.ui-widget-content {
  3694. background: none !important;
  3695. background-color: #eee !important;
  3696. }
  3697. .ui-datepicker .ui-widget-header {
  3698. background: none !important;
  3699. background-color: #e0e0e0 !important;
  3700. border: 0 !important;
  3701. box-shadow: none !important;
  3702. height: 28px;
  3703. }
  3704. .ui-widget-header .ui-icon {
  3705. background-image: url(../image/ui-icons_888888_256x240.png) !important;
  3706. }
  3707. .ui-widget-header .ui-datepicker-next,
  3708. .ui-widget-header .ui-datepicker-prev {
  3709. margin: 2px 2px 2px 2px;
  3710. }
  3711. .ui-widget-header .ui-state-hover,
  3712. .ui-widget-header .ui-state-active {
  3713. background-color: #F2F2F2 !important;
  3714. border-color: #F2F2F2 !important;
  3715. background-image: none !important;
  3716. }
  3717. .ui-datepicker .ui-datepicker-title {
  3718. font-weight: 400 !important;
  3719. text-transform: uppercase !important;
  3720. font-size: 14px !important;
  3721. color: #333;
  3722. }
  3723. .ui-datepicker .ui-datepicker-title span {
  3724. display: inline-block;
  3725. padding-top: 2px;
  3726. }
  3727. .ui-datepicker .ui-datepicker-calendar thead span {
  3728. font-weight: 300 !important;
  3729. font-size: 13px !important;
  3730. text-transform: uppercase !important;
  3731. color: #333 !important;
  3732. }
  3733. .ui-datepicker .ui-datepicker-week-col {
  3734. font-weight: 400 !important;
  3735. font-size: 13px !important;
  3736. text-transform: uppercase !important;
  3737. color: #333 !important;
  3738. }
  3739. .ui-datepicker tbody .ui-datepicker-week-col {
  3740. text-align: center;
  3741. }
  3742. .ui-datepicker .ui-datepicker-calendar .ui-state-default {
  3743. font-weight: 300 !important;
  3744. font-size: 13px !important;
  3745. text-transform: uppercase !important;
  3746. color: #333 !important;
  3747. border-color:#DEDEDE;
  3748. background-color: #DEDEDE !important;
  3749. }
  3750. .ui-datepicker .ui-datepicker-calendar .ui-state-active,
  3751. .ui-datepicker .ui-datepicker-calendar .ui-state-hover {
  3752. background-image: none !important;
  3753. border-color:#ffb848;
  3754. background-color: #ffb848 !important;
  3755. }
  3756. .ui-datepicker .ui-datepicker-calendar .ui-state-highlight {
  3757. background-image: none !important;
  3758. background-color: #FFDBA3 !important;
  3759. border-color:#ffb848;
  3760. }
  3761. .ui-datepicker .ui-datepicker-calendar .ui-state-active {
  3762. background-image: none !important;
  3763. background-color: #ffb848 !important;
  3764. border-color:#ffb848;
  3765. }
  3766. .ui-datepicker button.ui-state-default {
  3767. background-image: none !important;
  3768. background-color: #35aa47 !important;
  3769. border-color: #35aa47 !important;
  3770. color: #fff;
  3771. }
  3772. .ui-datepicker button.ui-state-hover {
  3773. border-color: #1d943b !important;
  3774. background-color: #1d943b !important;
  3775. color: #fff !important;
  3776. }
  3777. .ui-datepicker button.ui-state-default.ui-priority-secondary {
  3778. font-weight: 300 !important;
  3779. font-size: 13px !important;
  3780. }
  3781. .ui-datepicker button.ui-state-default.ui-priority-primary {
  3782. font-weight: 300 !important;
  3783. font-size: 13px !important;
  3784. }
  3785. /***
  3786. jQuery UI Dialogs(new in v1.2.4)
  3787. ***/
  3788. .ui-dialog {
  3789. z-index: 10011 !important;
  3790. background: none !important;
  3791. background-color: #eee !important;
  3792. }
  3793. .ui-dialog .ui-dialog-titlebar {
  3794. font-weight: 300 !important;
  3795. font-size: 14px !important;
  3796. text-transform: uppercase !important;
  3797. color: #333 !important;
  3798. background: none !important;
  3799. background-color: #e0e0e0 !important;
  3800. border: 0 !important;
  3801. box-shadow: none !important;
  3802. font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial;
  3803. }
  3804. .ui-dialog .ui-dialog-titlebar-close {
  3805. outline: none !important;
  3806. border: 0 !important;
  3807. box-shadow: none;
  3808. background: url(../image/hor-menu-search-close.png) no-repeat center;
  3809. margin-top: -12px !important;
  3810. }
  3811. .ui-dialog .ui-dialog-titlebar-close:hover {
  3812. opacity: 0.8;
  3813. filter: alpha(opacity=80);
  3814. }
  3815. /*dialog title bg colors*/
  3816. .ui-dialog.ui-dialog-blue .ui-dialog-titlebar {
  3817. color: #fff !important;
  3818. background-color: #4b8df8 !important;
  3819. }
  3820. .ui-dialog.ui-dialog-blue .ui-dialog-titlebar-close {
  3821. background: url(../image/hor-menu-search-close-white.png) no-repeat center;
  3822. }
  3823. .ui-dialog.ui-dialog-red .ui-dialog-titlebar {
  3824. color: #fff !important;
  3825. background-color: #e02222 !important;
  3826. }
  3827. .ui-dialog.ui-dialog-red .ui-dialog-titlebar-close {
  3828. background: url(../image/hor-menu-search-close-white.png) no-repeat center;
  3829. }
  3830. .ui-dialog.ui-dialog-yellow .ui-dialog-titlebar {
  3831. color: #fff !important;
  3832. background-color: #ffb848 !important;
  3833. }
  3834. .ui-dialog.ui-dialog-yellow .ui-dialog-titlebar-close {
  3835. background: url(../image/hor-menu-search-close-white.png) no-repeat center;
  3836. }
  3837. .ui-dialog.ui-dialog-green .ui-dialog-titlebar {
  3838. color: #fff !important;
  3839. background-color: #35aa47 !important;
  3840. }
  3841. .ui-dialog.ui-dialog-green .ui-dialog-titlebar-close {
  3842. background: url(../image/hor-menu-search-close-white.png) no-repeat center;
  3843. }
  3844. .ui-dialog.ui-dialog-purple .ui-dialog-titlebar {
  3845. color: #fff !important;
  3846. background-color: #852b99 !important;
  3847. }
  3848. .ui-dialog.ui-dialog-purple .ui-dialog-titlebar-close {
  3849. background: url(../image/hor-menu-search-close-white.png) no-repeat center;
  3850. }
  3851. .ui-dialog.ui-dialog-grey .ui-dialog-titlebar {
  3852. color: #fff !important;
  3853. background-color: #555555 !important;
  3854. }
  3855. .ui-dialog.ui-dialog-grey .ui-dialog-titlebar-close {
  3856. background: url(../image/hor-menu-search-close-white.png) no-repeat center;
  3857. }
  3858. /*dialog title bg colors*/
  3859. .ui-dialog .ui-dialog-content {
  3860. font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial;
  3861. font-size: 13px !important;
  3862. color: #333 !important;
  3863. }
  3864. .ui-dialog .ui-dialog-content .icon {
  3865. display: inline-block;
  3866. float: left;
  3867. margin: 5px 7px 20px 0;
  3868. }
  3869. .ui-widget-overlay.ui-front {
  3870. z-index: 10010;
  3871. background: #333 !important;
  3872. }
  3873. /***
  3874. Sidebar Content
  3875. ***/
  3876. .sidebar-content {
  3877. margin-top: 20px;
  3878. }
  3879. /***
  3880. Horezantal Menu(new in v1.2)
  3881. ***/
  3882. .header .hor-menu {
  3883. margin: 0;
  3884. float: left;
  3885. }
  3886. .header .hor-menu ul.nav li a {
  3887. font-size: 14px;
  3888. padding: 11px 18px;
  3889. }
  3890. .ie8 .header .hor-menu a.dropdown-toggle {
  3891. padding-top: 10px !important;
  3892. }
  3893. .header .hor-menu ul.nav li {
  3894. position: relative;
  3895. }
  3896. .header .hor-menu ul.nav li.active > a,
  3897. .header .hor-menu ul.nav li.active > a:hover {
  3898. background: #e02222 !important;
  3899. }
  3900. .ie8 .header .hor-menu ul.nav li.active > a {
  3901. padding-top: 13px;
  3902. padding-bottom: 12px;
  3903. }
  3904. .ie9 .header .hor-menu ul.nav li.active > a {
  3905. padding-top: 10px;
  3906. padding-bottom: 12px;
  3907. }
  3908. .header .hor-menu ul.nav li.active .selected {
  3909. left: 50%;
  3910. bottom:0;
  3911. position: absolute;
  3912. border-left: 6px solid transparent;
  3913. border-right: 6px solid transparent;
  3914. border-top: 6px solid #e02222;
  3915. display: inline-block;
  3916. margin: 0;
  3917. width: 0px;
  3918. height:0px;
  3919. margin-left: -7px;
  3920. margin-bottom:-6px;
  3921. }
  3922. .header .hor-menu ul.nav li a:hover,
  3923. .header .hor-menu ul.nav li a:focus {
  3924. background: #2d2d2d;
  3925. }
  3926. /*drop-down*/
  3927. .header .hor-menu .dropdown-menu {
  3928. margin-top: 0;
  3929. border: none;
  3930. box-shadow: none;
  3931. background: #2d2d2d;
  3932. }
  3933. .header .hor-menu .dropdown-menu li > a {
  3934. color: #999;
  3935. padding: 7px 18px !important;
  3936. margin-bottom:1px;
  3937. }
  3938. .header .dropdown-menu .arrow {
  3939. display: none;
  3940. }
  3941. .header .hor-menu ul.nav > li > a > .arrow:before {
  3942. margin-top: 7px;
  3943. margin-left: 3px;
  3944. display: inline;
  3945. font-size: 16px;
  3946. font-family: FontAwesome;
  3947. height: auto;
  3948. content: "\f107";
  3949. font-weight: 300;
  3950. text-shadow:none;
  3951. }
  3952. .header .hor-menu ul.nav > li .dropdown-menu > li > a > .arrow:before {
  3953. float: right;
  3954. margin-top: 1px;
  3955. margin-right: -5px;
  3956. display: inline;
  3957. font-size: 16px;
  3958. font-family: FontAwesome;
  3959. height: auto;
  3960. content: "\f105";
  3961. font-weight: 300;
  3962. text-shadow:none;
  3963. }
  3964. .header .hor-menu .dropdown-menu li > a:hover,
  3965. .header .hor-menu .dropdown-menu li:hover > a,
  3966. .header .hor-menu .dropdown-menu li.active > a {
  3967. color: #fff;
  3968. filter:none !important;
  3969. background: #e02222 !important;
  3970. }
  3971. .header .hor-menu .nav > li > .dropdown-menu:after,
  3972. .header .hor-menu .nav > li > .dropdown-menu:before {
  3973. border-bottom: none !important;
  3974. }
  3975. /*search*/
  3976. .header .hor-menu .hor-menu-search-form-toggler {
  3977. display: inline-block;
  3978. padding: 11px 22px 11px 22px !important;
  3979. cursor: pointer;
  3980. background: url(../image/hor-menu-search.png) no-repeat center;
  3981. }
  3982. .header .hor-menu .hor-menu-search-form-toggler:hover {
  3983. opacity: 0.8;
  3984. filter: alpha(opacity=80);
  3985. }
  3986. .header .hor-menu .hor-menu-search-form-toggler.hide {
  3987. background: #101010 url(../image/hor-menu-search-close.png) no-repeat center;
  3988. }
  3989. .header .hor-menu a.hor-menu-search-form-toggler-close {
  3990. display: none;
  3991. }
  3992. .header .hor-menu .search-form {
  3993. top:42px;
  3994. right:0px;
  3995. padding:8px;
  3996. display:none;
  3997. z-index:999;
  3998. position:absolute;
  3999. background:#101010;
  4000. }
  4001. .header .hor-menu .search-form .btn {
  4002. color: #999;
  4003. padding: 7px 20px;
  4004. height: 32px;
  4005. width: 10px;
  4006. display: inline-block;
  4007. background: #2d2d2d url(../image/search-icon.png) no-repeat center;
  4008. }
  4009. .header .hor-menu .search-form .btn:hover {
  4010. opacity: 0.8;
  4011. filter: alpha(opacity=80);
  4012. }
  4013. .header .hor-menu .search-form form {
  4014. margin-bottom: 0;
  4015. }
  4016. .header .hor-menu .search-form form input {
  4017. color: #999;
  4018. border: none;
  4019. }
  4020. .header .hor-menu .search-form form input::-webkit-input-placeholder { /* WebKit browsers */
  4021. color: #999;
  4022. }
  4023. .header .hor-menu .search-form form input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  4024. color: #999;
  4025. }
  4026. .header .hor-menu .search-form form input::-moz-placeholder { /* Mozilla Firefox 19+ */
  4027. color: #999;
  4028. }
  4029. .header .hor-menu .search-form form input:-ms-input-placeholder { /* Internet Explorer 10+ */
  4030. color: #999;
  4031. }
  4032. /***
  4033. Dashboard Charts(new in v1.2.1)
  4034. ***/
  4035. .easy-pie-chart,
  4036. .sparkline-chart {
  4037. text-align: center;
  4038. }
  4039. .sparkline-chart {
  4040. margin-top: 15px;
  4041. position:relative !important;
  4042. }
  4043. .easy-pie-chart .number {
  4044. font-size: 16px;
  4045. font-weight: 300;
  4046. width: 85px;
  4047. margin: 0 auto;
  4048. }
  4049. .sparkline-chart .number {
  4050. width: 100px;
  4051. margin: 0 auto;
  4052. margin-bottom: 10px;
  4053. }
  4054. .sparkline-chart .title,
  4055. .easy-pie-chart .title {
  4056. display: block;
  4057. text-align: center;
  4058. color: #333;
  4059. font-weight: 300;
  4060. font-size: 16px;
  4061. margin-top: 5px;
  4062. margin-bottom: 10px;
  4063. }
  4064. .sparkline-chart .title:hover,
  4065. .easy-pie-chart .title:hover {
  4066. color: #666;
  4067. text-decoration: none;
  4068. }
  4069. /***
  4070. Top News Blocks(new in v1.2.2)
  4071. ***/
  4072. .top-news {
  4073. color: #fff;
  4074. margin: 8px 0;
  4075. }
  4076. .top-news a,
  4077. .top-news em,
  4078. .top-news span {
  4079. display: block;
  4080. text-align: left;
  4081. }
  4082. .top-news a {
  4083. padding: 10px;
  4084. position: relative;
  4085. margin-bottom: 10px;
  4086. }
  4087. .top-news a .top-news-icon {
  4088. right: 8px;
  4089. bottom: 15px;
  4090. opacity:0.3;
  4091. font-size: 35px;
  4092. position: absolute;
  4093. filter: alpha(opacity=30); /*For IE8*/
  4094. }
  4095. .top-news em {
  4096. margin-bottom: 0;
  4097. font-style: normal;
  4098. }
  4099. .top-news span {
  4100. font-size: 18px;
  4101. margin-bottom: 5px;
  4102. }
  4103. /***
  4104. Bootstrap Carousel(new in v1.2.2)
  4105. ***/
  4106. .carousel {
  4107. margin-bottom: 0;
  4108. }
  4109. .carousel .carousel-caption a {
  4110. color: #fff;
  4111. }
  4112. .carousel .carousel-inner .item {
  4113. margin-bottom: 10px;
  4114. }
  4115. .carousel a.carousel-control {
  4116. border: none;
  4117. padding: 5px;
  4118. display: none;
  4119. }
  4120. .carousel:hover a.carousel-control {
  4121. display: block;
  4122. width: 40px;
  4123. height: 40px;
  4124. }
  4125. /***
  4126. Block Images(new in v1.2.2)
  4127. ***/
  4128. .blog-images {
  4129. margin-bottom: 0;
  4130. }
  4131. .blog-images li {
  4132. display: inline;
  4133. }
  4134. .blog-images li a:hover {
  4135. text-decoration: none;
  4136. }
  4137. .blog-images li img {
  4138. width: 50px;
  4139. height: 50px;
  4140. opacity: 0.6;
  4141. margin: 0 2px 8px;
  4142. }
  4143. .blog-images li img:hover {
  4144. opacity: 1;
  4145. box-shadow: 0 0 0 4px #72c02c;
  4146. transition: all 0.4s ease-in-out 0s;
  4147. -moz-transition: all 0.4s ease-in-out 0s;
  4148. -webkit-transition: all 0.4s ease-in-out 0s;
  4149. }
  4150. /*Sidebar Tags*/
  4151. ul.sidebar-tags a {
  4152. color: #555;
  4153. font-size:12px;
  4154. padding:2px 5px;
  4155. background:#f7f7f7;
  4156. margin:0 2px 5px 0;
  4157. display:inline-block;
  4158. }
  4159. ul.sidebar-tags a:hover,
  4160. ul.sidebar-tags a:hover i {
  4161. color:#fff;
  4162. background: #555;
  4163. text-decoration:none;
  4164. -webkit-transition:all 0.3s ease-in-out;
  4165. -moz-transition:all 0.3s ease-in-out;
  4166. -o-transition:all 0.3s ease-in-out;
  4167. transition:all 0.3s ease-in-out;
  4168. }
  4169. ul.sidebar-tags a i {
  4170. color:#777;
  4171. }
  4172. ul.sidebar-tags li {
  4173. padding: 0;
  4174. }
  4175. /***
  4176. Social Icons(new in v1.2.2)
  4177. ***/
  4178. .social-icons {
  4179. margin:0;
  4180. }
  4181. .social-icons:after,
  4182. .social-icons:before {
  4183. content: "";
  4184. display: table;
  4185. }
  4186. .social-icons:after {
  4187. clear: both;
  4188. }
  4189. .social-icons li {
  4190. float:left;
  4191. display:inline;
  4192. list-style:none;
  4193. margin-right:5px;
  4194. margin-bottom:5px;
  4195. text-indent:-9999px;
  4196. }
  4197. .social-icons li a, a.social-icon {
  4198. width:28px;
  4199. height:28px;
  4200. display:block;
  4201. background-position:0 0;
  4202. background-repeat:no-repeat;
  4203. transition: all 0.3s ease-in-out;
  4204. -o-transition: all 0.3s ease-in-out;
  4205. -ms-transition: all 0.3s ease-in-out;
  4206. -moz-transition: all 0.3s ease-in-out;
  4207. -webkit-transition: all 0.3s ease-in-out;
  4208. }
  4209. .social-icons li:hover a {
  4210. background-position:0 -38px;
  4211. }
  4212. .social-icons .amazon {background: url(../image/amazon.png) no-repeat;}
  4213. .social-icons .behance {background: url(../image/behance.png) no-repeat;}
  4214. .social-icons .blogger {background: url(../image/blogger.png) no-repeat;}
  4215. .social-icons .deviantart {background: url(../image/deviantart.png) no-repeat;}
  4216. .social-icons .dribbble {background: url(../image/dribbble.png) no-repeat;}
  4217. .social-icons .dropbox {background: url(../image/dropbox.png) no-repeat;}
  4218. .social-icons .evernote {background: url(../image/evernote.png) no-repeat;}
  4219. .social-icons .facebook {background: url(../image/facebook.png) no-repeat;}
  4220. .social-icons .forrst {background: url(../image/forrst.png) no-repeat;}
  4221. .social-icons .github {background: url(../image/github.png) no-repeat;}
  4222. .social-icons .googleplus {background: url(../image/googleplus.png) no-repeat;}
  4223. .social-icons .jolicloud {background: url(../image/jolicloud.png) no-repeat;}
  4224. .social-icons .last-fm {background: url(../image/last-fm.png) no-repeat;}
  4225. .social-icons .linkedin {background: url(../image/linkedin.png) no-repeat;}
  4226. .social-icons .picasa {background: url(../image/picasa.png) no-repeat;}
  4227. .social-icons .pintrest {background: url(../image/pintrest.png) no-repeat;}
  4228. .social-icons .rss {background: url(../image/rss.png) no-repeat;}
  4229. .social-icons .skype {background: url(../image/skype.png) no-repeat;}
  4230. .social-icons .spotify {background: url(../image/spotify.png) no-repeat;}
  4231. .social-icons .stumbleupon {background: url(../image/stumbleupon.png) no-repeat;}
  4232. .social-icons .tumblr {background: url(../image/tumblr.png) no-repeat;}
  4233. .social-icons .twitter {background: url(../image/twitter.png) no-repeat;}
  4234. .social-icons .vimeo {background: url(../image/vimeo.png) no-repeat;}
  4235. .social-icons .wordpress {background: url(../image/wordpress.png) no-repeat;}
  4236. .social-icons .xing {background: url(../image/xing.png) no-repeat;}
  4237. .social-icons .yahoo {background: url(../image/yahoo.png) no-repeat;}
  4238. .social-icons .youtube {background: url(../image/youtube.png) no-repeat;}
  4239. .social-icons .vk {background: url(../image/vk.png) no-repeat;}
  4240. .social-icons .instagram {background: url(../image/instagram.png) no-repeat;}
  4241. /***
  4242. Responsive tables(new in v1.2.3)
  4243. ***/
  4244. .flip-scroll table { width: 100%; }
  4245. @media only screen and (max-width: 800px) {
  4246. .flip-scroll table {border-left: 1px solid #ddd}
  4247. .flip-scroll .flip-content:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
  4248. .flip-scroll * html .flip-content { zoom: 1; }
  4249. .flip-scroll *:first-child+html .flip-content { zoom: 1; }
  4250. .flip-scroll table { width: 100%; border-collapse: collapse; border-spacing: 0; }
  4251. .flip-scroll th,
  4252. .flip-scroll td { margin: 0; vertical-align: top; }
  4253. .flip-scroll th { text-align: left; }
  4254. .flip-scroll table { display: block; position: relative; width: 100%; }
  4255. .flip-scroll thead { display: block; float: left; }
  4256. .flip-scroll tbody { display: block; width: auto; position: relative; overflow-x: auto; white-space: nowrap; }
  4257. .flip-scroll thead tr { display: block; }
  4258. .flip-scroll th { display: block; text-align: right; }
  4259. .flip-scroll tbody tr { display: inline-block; vertical-align: top; }
  4260. .flip-scroll td { display: block; min-height: 1.25em; text-align: left; }
  4261. /* sort out borders */
  4262. .flip-scroll th { border-bottom: 0; border-left: 0; }
  4263. .flip-scroll td { border-left: 0; border-right: 0; border-bottom: 0; }
  4264. .flip-scroll tbody tr { border-left: 1px solid #ddd; }
  4265. .flip-scroll th:last-child,
  4266. .flip-scroll td:last-child { border-bottom: 1px solid #ddd; }
  4267. }
  4268. .no-more-tables table {
  4269. width: 100%;
  4270. }
  4271. @media only screen and (max-width: 800px) {
  4272. /* Force table to not be like tables anymore */
  4273. .no-more-tables table,
  4274. .no-more-tables thead,
  4275. .no-more-tables tbody,
  4276. .no-more-tables th,
  4277. .no-more-tables td,
  4278. .no-more-tables tr {
  4279. display: block;
  4280. }
  4281. /* Hide table headers (but not display: none;, for accessibility) */
  4282. .no-more-tables thead tr {
  4283. position: absolute;
  4284. top: -9999px;
  4285. left: -9999px;
  4286. }
  4287. .no-more-tables tr {
  4288. border-left: 1px solid #ddd;
  4289. border-bottom: 1px solid #ddd;
  4290. }
  4291. .no-more-tables tr:last-child {
  4292. border-bottom: 0;
  4293. }
  4294. .no-more-tables td {
  4295. /* Behave like a "row" */
  4296. border: none;
  4297. border-bottom: 1px solid #eee;
  4298. position: relative;
  4299. padding-left: 50%;
  4300. white-space: normal;
  4301. text-align:left;
  4302. }
  4303. .no-more-tables td:before {
  4304. /* Now like a table header */
  4305. position: absolute;
  4306. /* Top/left values mimic padding */
  4307. top: 6px;
  4308. left: 6px;
  4309. width: 45%;
  4310. padding-right: 10px;
  4311. white-space: nowrap;
  4312. text-align:left;
  4313. font-weight: bold;
  4314. }
  4315. /*
  4316. Label the data
  4317. */
  4318. .no-more-tables td:before { content: attr(data-title); }
  4319. }
  4320. /***
  4321. Fancy box fix overlay fix(in v1.2.4)
  4322. ***/
  4323. .fancybox-overlay {
  4324. z-index: 10000 !important;
  4325. }
  4326. /***
  4327. Bootstrap Datetimepickers Restyle(in v1.2.4)
  4328. ***/
  4329. .modal-open .datetimepicker {
  4330. z-index: 10060 !Important;
  4331. }
  4332. .datetimepicker table .active {
  4333. background-image: none !important;
  4334. background-color: #4b8df8 !important;
  4335. filter: none !important;
  4336. }
  4337. .datetimepicker table td {
  4338. font-weight: 300 !important;
  4339. font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial !important;
  4340. }
  4341. .datetimepicker table th {
  4342. font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial !important;
  4343. font-weight: 400 !important;
  4344. }
  4345. /***
  4346. Bootstrap Datepickers Restyle(in v1.2.4)
  4347. ***/
  4348. .modal-open .datepicker {
  4349. z-index: 10060 !Important;
  4350. }
  4351. .datepicker table .active {
  4352. background-image: none !important;
  4353. background-color: #4b8df8 !important;
  4354. filter: none !important;
  4355. }
  4356. .datepicker table td {
  4357. font-weight: 300 !important;
  4358. font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial !important;
  4359. }
  4360. .datepicker table th {
  4361. font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial !important;
  4362. font-weight: 400 !important;
  4363. }
  4364. /***
  4365. Bootstrap Colorpicker (in v1.3)
  4366. ***/
  4367. .modal-open .colorpicker {
  4368. z-index: 10060 !important;
  4369. }
  4370. /***
  4371. Dropdown Checkboxes (in v1.3)
  4372. ***/
  4373. .dropdown-checkboxes {
  4374. padding: 5px;
  4375. }
  4376. .dropdown-checkboxes label {
  4377. color: #333;
  4378. margin-bottom: 4px;
  4379. margin-top: 4px;
  4380. }
  4381. /***
  4382. Datatables Plugin(in v1.3)
  4383. ***/
  4384. .dataTable {
  4385. clear: both;
  4386. margin-top: 5px;
  4387. }
  4388. .dataTables_filter label {
  4389. line-height: 32px !important;
  4390. }
  4391. .dataTable .row-details {
  4392. margin-top: 3px;
  4393. display: inline-block;
  4394. cursor: pointer;
  4395. width: 14px;
  4396. height: 14px;
  4397. }
  4398. .dataTable .row-details.row-details-close {
  4399. background: url("../image/datatable-row-openclose.png") no-repeat 0 0;
  4400. }
  4401. .dataTable .row-details.row-details-open {
  4402. background: url("../image/datatable-row-openclose.png") no-repeat 0 -23px !important;
  4403. }
  4404. .dataTable .details {
  4405. background-color: #eee !important;
  4406. }
  4407. .dataTable .details td,
  4408. .dataTable .details th {
  4409. padding: 4px;
  4410. border: 0;
  4411. background-color: inherit!important;
  4412. }
  4413. .dataTable .details tr:hover td,
  4414. .dataTable .details tr:hover th {
  4415. background-color: inherit !important;
  4416. }
  4417. .dataTable .details tr:nth-child(odd) td,
  4418. .dataTable .details tr:nth-child(odd) th {
  4419. background-color: #eee !important;
  4420. }
  4421. .dataTable .details tr:nth-child(even) td,
  4422. .dataTable .details tr:nth-child(even) th {
  4423. background-color: #eee !important;
  4424. }