adminlte

AdminLTE

◇◆丶佛笑我妖孽 提交于 2019-12-19 04:42:10
AdminLTE是基于bootstrap和jquery的,主要是用于创建后台网站。 ADminLTE官网: https://github.com/ColorlibHQ/AdminLTE ADminLTE汉化: https://github.com/itheima2017/adminlte2-itheima 来源: CSDN 作者: JT.L 链接: https://blog.csdn.net/amazinx/article/details/103598689

fonts.googleapis.com wants on local

末鹿安然 提交于 2019-12-13 11:04:40
问题 I am using adminlte theme for xyz project i want all css on local fonts.googleapis.com and fonts.gstatic.com goes on server i wants on local thats why i am commenting that line in \css\AdminLTE.css see in below code but after that goes in server. /*@import url(https://fonts.googleapis.com/css? family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic); ! * AdminLTE v2.3.8 * Author: Almsaeed Studio * Website: Almsaeed Studio <http://almsaeedstudio.com> * License: Open source - MIT *

Sprockets::FileNotFound: couldn't find file 'adminlte' with type 'application/javascript'

北城以北 提交于 2019-12-13 07:12:45
问题 I followed stack overfolw's answer to add adminlte in my rails app it also says to add //= require adminlte in application.js it works fine on local system but now when I am trying to deploy to digital ocean droplet it gives error Sprockets::FileNotFound: couldn't find file 'adminlte' with type 'application/javascript' My gemfile(I removed all gems except relavent) to clear the adminlte issue source 'https://rubygems.org' gem 'bundler', '>= 1.8.4' gem 'pnotify-rails' source 'https://rails

AdminLTE and AngularJS content wrapper wrong min-height

非 Y 不嫁゛ 提交于 2019-12-10 23:54:47
问题 i am trying to use AngularJS (And ui.router) with this template for partials and templating. (To make it single paged). Although my page is rendered fine, the .content-wrapper div tag gets the wrong min-height attribute (564px;) when used with angular. But when i view the starter.html , the sample page, its fine (494px;). Can someone explain to me why it does this? Is this Bootstrap? Angular or the theme? Or a combination? Source (As rendered in chrome, collapsed to keep it small): It also

Align header elements in shiny dashboard

眉间皱痕 提交于 2019-12-06 08:42:57
问题 I'm working with shinydashboard to jazz up a shiny app a bit and I'm having trouble positioning some elements (eg logo) on the page. I found this answer which was immensely useful in increasing the height of the header, but I can't quite manage the alignment issue. There are still spaces on the left and right (red ovals) between the logo and the floating hamburger and the edges. The only way I've been able to move the hamburger has been increasing the relative size ( titleWidth = "92%" ) of

AdminLTE 框架保持菜单状态同步方案

只愿长相守 提交于 2019-12-05 07:02:26
1.页面关闭时将菜单状态保存到session中。 JS文件: //页面关闭时将菜单状态保存到session供下次打开页面使用 $(window).bind('beforeunload',function(){ menuStatus = $("body").hasClass("sidebar-collapse"); $.get(Global.assets+"/anon/session/setMenuStatus.do?menuStatus="+menuStatus); }); JAVA文件: @Controller @RequestMapping(value="/anon/session") public class SessionController extends BaseController{ @RequestMapping(value="/setMenuStatus",method=RequestMethod.GET) public String setMenuStatus(HttpServletRequest request,HttpServletResponse response,HttpSession session,Model model){ String menuStatus = request.getParameter("menuStatus"); session

解决adminLTE 左侧菜单点击后自动收起来的一个简单方法

给你一囗甜甜゛ 提交于 2019-12-05 07:02:06
最近用到adminLTE模版框架,这是一个好东东,只是在使用中发现点击左侧菜单后,会自动收起,因本人侧重后端django的编写,对前端的js不是很在行,所以就想到<li class='active'>可以让一个菜单保持点击状态 ,所以就在后端的视图函数渲染模板时传递一下个参数,在li中进行比较, 比如在视图函数中这样写,return render(request, 'xxx.html', {'m':'selectm'}) 在模板中,菜单的每一个li都这样写: <li {% ifequal m 'selectm' %} class='active' {% endifequal %} 不同的是每一个li后面的参数'selectm' 来源: CSDN 作者: 心如海 链接: https://blog.csdn.net/qq_42469759/article/details/93482977

yii2在使用adminLTE模板进行搭建后台时总是出现用户名密码错误的解决办法

只谈情不闲聊 提交于 2019-12-05 07:01:37
一、问题描述 如图,在我们使用yii2自带的注册模板进行注册之后, 在利用登陆模块进行测试登陆后,总是出现用户名密码错误的提示,无法进行登陆。 在利用AdminLTE模板进行登陆的时候,出现同样状况。 二、解决办法 检查发现,在导入项目进行数据库迁移时,默认的user表中的password_hash的数据类型为varchar,导致在利用哈希码进行校验密码时由于长度不对而无法登陆 。我们只需要将 password_hash 字段的数据类型改为 text ,就可以了。 来源: CSDN 作者: Punkkfish 链接: https://blog.csdn.net/Punkkfish/article/details/90744149

修改AdminLTE左侧菜单展开延迟

十年热恋 提交于 2019-12-05 06:59:48
AdminLTE左侧菜单展开会有半秒钟的延迟. 看起来会慢半拍. 可修改 admin/dist/js/app.min.js 中的 animationSpeed值(默认为500) 即把animationSpeed:500修改成: animationSpeed:50 注意:不一定是admin/dist/js/app.min.js这个文件,如果你引入的是压缩后的版本,请找到你项目对应的!!! 笔主用的是压缩版,然后是adminlte.min.js这个文件。 碰到的坑: 1.全局搜索 animationSpeed:500 找到的文件并不是目标文件 2.全局搜索 animationSpeed把有animationSpeed:500的全部修改,仍然没生效 3.那就确认到底用的是那个文件,最后尝试到原来用的是adminlte.min.js这个文件。 见鬼的是,在项目的文件里面全局搜索animationSpeed:500和animationSpeed都没有找到这个文件,坑死爹爹了!!! 4.记得修改了文件习惯性ctrl+F5强行刷新哦,F5有可能有缓存的,保持良好的习惯可以避免不少坑哟! 参考文章: https://www.cnblogs.com/chen0427/p/10286776.html 来源: CSDN 作者: 或非与 链接: https://blog.csdn.net/qq

yii2使用AdminLTE 模板

徘徊边缘 提交于 2019-12-05 06:59:25
地址: https://blog.csdn.net/qq_23943147/article/details/78538658 一、安装 AdminLTE 渲染后台 1、利用 AdminLTE 渲染后台模板 AdminLTE 是一个完全响应管理模板。基于 Bootstrap3 框架,易定制模板。适合多种屏幕分辨率,从小型移动设备到大型台式机。内置了多个页面,包括仪表盘、邮箱、日历、锁屏、登录及注册、404错误、500错误等页面。 进入 cmd,切换到 advanced 目录,输入 composer require dmstr/yii2-adminlte-asset "2.*" 复制 vendor/dmstr/yii2-adminlte-asset/example-views/yiisoft/yii2-app 到 backend/views/,需要覆盖的则覆盖 2、进入后台 127.0.0.1/advanced/backend/web/ 查看效果 AdminLTE地址: https://github.com/dmstr/yii2-adminlte-asset 在线手册: https://almsaeedstudio.com/themes/AdminLTE/documentation/index.html 来源: CSDN 作者: 寻仙散人 链接: https://blog.csdn